[]
The common collection object.
public abstract class RtfCollection : RtfObject, ICloneable, IEnumerable
Name | Description |
---|---|
Count | Gets the number of Word/RTF object in the collection. |
Current | Gets current Word/RTF object for set (group, collection). |
IsEmpty | Gets is empty this object. |
this[int] | Gets or sets the Word/RTF object at the specified index within the collection. |
Name | Description |
---|---|
Add(RtfObject) | Adds the Word/RTF object to the collection. |
Clear() | Removes all objects from the collection. |
Clone(RtfObject) | Creates a new RtfCollection that is a copy of the current collection. |
Contains(RtfObject) | Determines whether the Word/RTF object is located within the collection. |
GetEnumerator() | Exposes the enumerator, which supports a simple iteration over a non-generic collection. |
IndexOf(RtfObject) | Returns the index within the collection of the element. |
Insert(int, RtfObject) | Inserts an item into the Word/RTF object collection of the RTF object at the specified index. |
Remove(RtfObject) | Removes the specified Word/RTF object from the collection. |
RemoveAt(int) | Removes the item at the specified index within the collection. |