[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IColorScale.Delete

Delete Method

Delete()

Deletes this conditional format.

Use this method to remove the current color scale conditional formatting rule from its worksheet.

Declaration
void Delete()
Sub Delete()
Examples
IRange range = worksheet.Range["A1:A5"];
range.Value = new object[,] {{10}, {30}, {50}, {70}, {90}};
IColorScale colorScale = range.FormatConditions.AddColorScale(ColorScaleType.TwoColorScale);
colorScale.Delete();