[]
Deletes this conditional format.
Use this method to remove the current unique-values or duplicate-values conditional formatting rule from its worksheet.
void Delete()
Sub Delete()
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();