[]
The bookmark collection object.
public class RtfBookmarkCollection : IEnumerable
Name | Description |
---|---|
Count | Gets the number of Word/RTF bookmark in the collection. |
this[int] | Gets or sets the Word/RTF bookmark at the specified index within the collection. |
this[string] | Gets the Word/RTF bookmark at the specified name within the collection. |
Name | Description |
---|---|
Add(RtfBookmark) | Adds the Word/RTF bookmark to the collection. |
Clear() | Removes all bookmarks from the collection. |
Contains(RtfBookmark) | Determines whether the Word/RTF bookmark is located within the collection. |
Contains(string) | Determines whether the bookmark with name is located within the collection. |
IndexOf(RtfBookmark) | Returns the index within the collection of the element. |
IndexOf(string) | Returns the index within the collection of the element. |
Insert(int, RtfBookmark) | Inserts an item into the RTF bookmark collection of the RTF bookmark at the specified index. |
Remove(RtfBookmark) | Removes the specified RTF bookmark from the collection. |
RemoveAt(int) | Removes the item at the specified index within the collection. |