[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ICustomXmlPartCollection.Count

Count Property

Count

Gets the number of Custom XML parts in the collection.

Declaration
int Count { get; }
ReadOnly Property Count As Integer
Property Value
Type Description
int

The number of Custom XML parts in the collection.

Examples
int count = workbook.CustomXmlParts.Count;
for (int i = 0; i < count; i++)
{
    ICustomXmlPart customXmlPart = workbook.CustomXmlParts[i];
}