[]
Gets an IIconCriteria collection, which represents the set of criteria for an icon set conditional formatting rule.
Each item in the returned collection represents the threshold settings for one icon in the current icon set.
IIconCriteria IconCriteria { get; }
ReadOnly Property IconCriteria As IIconCriteria
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.Icon3Symbols];
IIconCriteria criteria = condition.IconCriteria;