[]
Gets or sets the IconType value for a criterion in an icon set conditional formatting rule.
Use this property to retrieve the icon currently assigned to a specific threshold in an icon set rule.
IconType Icon { get; set; }
Property Icon As IconType
IIconSetCondition condition = worksheet.Range["A1:A5"].FormatConditions.AddIconSetCondition();
condition.IconSet = workbook.IconSets[IconSetType.Icon3Symbols];
IIconCriterion criterion = condition.IconCriteria[1];
IconType icon = criterion.Icon;