[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IUniqueValues.Delete

Delete Method

Delete()

Deletes this conditional format.

Use this method to remove the current unique-values or duplicate-values conditional formatting rule from its worksheet.

Declaration
void Delete()
Sub Delete()
Examples
worksheet.Range["A1:A5"].Value = new object[,] {
    {100}, {100}, {200}, {300}, {300}
};
IUniqueValues condition = worksheet.Range["A1:A5"].FormatConditions.AddUniqueValues();
condition.Interior.Color = Color.Yellow;
condition.Delete();