[]
public class ShapeCollection : IEnumerable
Name | Description |
---|---|
Count | Gets count items in collection. |
this[int] | Gets the XLShape object at the specified position in the collection. |
Sheet | Gets the Sheet object that owns the collection. |
Name | Description |
---|---|
Add(XLShape) | Appends an XLShape object to the collection. |
Contains(XLShape) | Checks whether the collection contains a specific XLShape object. |
Contains(int) | Checks whether the collection contains a specific XLShape object. |
IndexOf(XLShape) | Gets the position of an XLShape object in the collection. |
IndexOf(int) | Gets the position of an XLShape object in the collection. |
Insert(int, XLShape) | Inserts an XLShape object at a specific position in the collection. |
Remove(XLShape) | Removes an XLShape object from the collection. |
Remove(int) | Removes an XLShape object from the collection. |