[]
public class XLCommentCollection : IEnumerable
Name | Description |
---|---|
Count | Gets the number of XLComment objects in the collection. |
this[int] | Gets the XLComment object at the specified position in the collection. |
Sheet | Gets the XLSheet object that owns the collection. |
Name | Description |
---|---|
Add(XLComment) | Appends an XLComment object to the collection. |
Add(int, int, string) | Creates an XLComment object and appends it to the collection. |
Add(int, int, string, string) | Creates an XLComment object and appends it to the collection. |
Add(int, int, string, string, bool) | Creates an XLComment object and appends it to the collection. |
Clear() | Removes all XLComment objects from the collection. |
Contains(XLComment) | Checks whether the collection contains a specific XLComment object. |
IndexOf(XLComment) | Gets the index of a specific XLComment object in the collection. |
Insert(int, XLComment) | Inserts an XLComment object at a specific position in the collection. |
Remove(XLComment) | Removes an XLComment object from the collection. |
RemoveAt(int) | Removes an XLComment object at a specific position from the collection. |