[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IIconSetCondition.Type

Type Property

Type

Gets the type of this conditional format.

For an icon set conditional formatting rule, this property returns IconSets.

Declaration
FormatConditionType Type { get; }
ReadOnly Property Type As FormatConditionType
Examples
worksheet.Range["A1:A5"].Value = new object[,] {{10}, {30}, {50}, {70}, {90}};
IIconSetCondition condition = worksheet.Range["A1:A5"].FormatConditions.AddIconSetCondition();
FormatConditionType type = condition.Type;