[]
Gets the number of Custom XML parts in the collection.
int Count { get; }
ReadOnly Property Count As Integer
| Type | Description |
|---|---|
| int | The number of Custom XML parts in the collection. |
int count = workbook.CustomXmlParts.Count;
for (int i = 0; i < count; i++)
{
ICustomXmlPart customXmlPart = workbook.CustomXmlParts[i];
}