Namespace TallComponents.PDF.Tags
Class TagChildCollection
The class represents collection of child Tags.
Syntax
public class TagChildCollection : Object,IEnumerable<ITagChild>
Constructors
Properties
Int32 Count
The count of the items in the collection.
ITagChild Item
Returns the Tag at a particular index.
Methods
Void Add(ITagChild)
Adds a tag to the collection
Void AddRange(ITagChild[])
Adds more Tags to the collection.
Void Clear()
Clears the collection.
Boolean Contains(ITagChild)
Checks if the Tag is included in the collection.
IEnumerator<ITagChild> GetEnumerator()
The enumerator for the collection.
Int32 IndexOf(ITagChild)
Searches the index of the specified ITagChild in the collection.
Void Insert(Int32,ITagChild)
Inserts a new ITagChild.
Boolean Remove(ITagChild)
Removes a Tag from the collection.
Void RemoveAt(Int32)
Removes Tag and a specified index from the collection.