iTextSharp.text.Phrase.AddAll C# (CSharp) Method

AddAll() public method

Adds a collection of Chunks to this Phrase.
public AddAll ( ICollection collection ) : bool
collection ICollection a collection of Chunks, Anchors and Phrases.
return bool
        public bool AddAll(ICollection collection) {
            foreach (object itm in collection) {
                this.Add(itm);
            }
            return true;
        }