[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IDataBar.Delete

Delete Method

Delete()

Deletes this data bar conditional formatting rule.

After this method is called, the data bar is removed from the range to which it applies.

Declaration
void Delete()
Sub Delete()
Examples
worksheet.Range["A1:A5"].Value = new object[,] {{1}, {2}, {3}, {4}, {5}};
IDataBar dataBar = worksheet.Range["A1:A5"].FormatConditions.AddDatabar();
dataBar.Delete();