[]
Gets the icon set with the specified type from the collection.
Use this indexer to retrieve a predefined IIconSet and apply it to an icon set conditional formatting rule through IconSet.
IIconSet this[IconSetType Index] { get; }
ReadOnly Default Property Item(Index As IconSetType) As IIconSet
| Type | Name | Description |
|---|---|---|
| IconSetType | Index | The IconSetType that specifies which icon set to retrieve. |
IIconSetCondition condition = worksheet.Range["A1:A5"].FormatConditions.AddIconSetCondition();
IIconSet iconSet = workbook.IconSets[IconSetType.Icon3Symbols];
condition.IconSet = iconSet;