[]
Represents a collection of icon sets used in an icon set conditional formatting rule.
public interface IIconSets
Public Interface IIconSets
IIconSets iconSets = workbook.IconSets;
IIconSetCondition condition = worksheet.Range["A1:A5"].FormatConditions.AddIconSetCondition();
IIconSet iconSet = iconSets[IconSetType.Icon3Symbols];
condition.IconSet = iconSet;
| Name | Description |
|---|---|
| Count | Gets the number of icon sets available in the workbook. |
| this[IconSetType] | 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. |