[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IIconSetCondition.IconSet

IconSet Property

IconSet

Gets or sets the icon set used in the conditional format.

Declaration
IIconSet IconSet { get; set; }
Property IconSet As IIconSet
Examples
worksheet.Range["A1:A5"].Value = new object[,] {{10}, {30}, {50}, {70}, {90}};
IIconSetCondition condition = worksheet.Range["A1:A5"].FormatConditions.AddIconSetCondition();
condition.IconSet = workbook.IconSets[IconSetType.Icon3TrafficLights1];
IIconSet iconSet = condition.IconSet;