iTextSharp.text.Section.AddAll C# (CSharp) Метод

AddAll() публичный Метод

Adds a collection of Elements to this Section.
public AddAll ( ICollection collection ) : bool
collection ICollection a collection of Paragraphs, Lists and/or Tables
Результат bool
        public bool AddAll(ICollection collection) {
            foreach (object itm in collection) {
                this.Add(itm);
            }
            return true;
        }