[]
Gets the number of icons in the icon set.
int Count { get; }
ReadOnly Property Count As Integer
IIconSet iconSet = workbook.IconSets[IconSetType.Icon3TrafficLights1];
int iconCount = iconSet.Count;
for (int i = 0; i < iconCount; i++)
{
IIcon icon = iconSet[i];
}