[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IIconSetCondition.Delete

Delete Method

Delete()

Deletes this conditional format.

Use this method to remove the current icon set conditional formatting rule from the worksheet.

Declaration
void Delete()
Sub Delete()
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.Icon3Symbols];
condition.Delete();