[]
Gets the type of this conditional format.
For an icon set conditional formatting rule, this property returns IconSets.
FormatConditionType Type { get; }
ReadOnly Property Type As FormatConditionType
worksheet.Range["A1:A5"].Value = new object[,] {{10}, {30}, {50}, {70}, {90}};
IIconSetCondition condition = worksheet.Range["A1:A5"].FormatConditions.AddIconSetCondition();
FormatConditionType type = condition.Type;