[]
Deletes this conditional format.
Use this method to remove the current color scale conditional formatting rule from its worksheet.
void Delete()
Sub Delete()
IRange range = worksheet.Range["A1:A5"];
range.Value = new object[,] {{10}, {30}, {50}, {70}, {90}};
IColorScale colorScale = range.FormatConditions.AddColorScale(ColorScaleType.TwoColorScale);
colorScale.Delete();