SpecialConditionalFormatting Interface
Represents a conditional formatting rule that formats cells with specific values.
Namespace: DevExpress.Spreadsheet
Assembly: DevExpress.Spreadsheet.v24.1.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
Declaration
public interface SpecialConditionalFormatting :
ConditionalFormatting,
ISupportsFormatting
Related API Members
The following members return SpecialConditionalFormatting objects:
Remarks
The conditional formatting rule specified by the SpecialConditionalFormatting object highlights cells that contain specific values (such as duplicate or unique values, formula errors, etc.). The Worksheet.ConditionalFormattings property returns the ConditionalFormattingCollection collection that stores all conditional formatting rules specified on a worksheet. Use the methods of the ConditionalFormattingCollection object to apply (the ConditionalFormattingCollection.AddSpecialConditionalFormatting method) or remove (the ConditionalFormattingCollection.Remove method) the conditional format.
Example
This example demonstrates how to specify the rule that highlights unique or duplicate values, formula errors, etc.
To create a new conditional formatting rule represented by the
SpecialConditionalFormatting
object, access the collection of conditional formats from the Worksheet.ConditionalFormattings property and call the ConditionalFormattingCollection.AddSpecialConditionalFormatting method. Pass the following parameters:- A CellRange object that defines a range of cells to which the rule is applied.
- A condition specified by one of the ConditionalFormattingSpecialCondition enumeration values.
- Specify formatting options to be applied to cells if the condition is true, using the ISupportsFormatting.Formatting property of the
SpecialConditionalFormatting
object.
Note
Transparency is not supported in conditional formatting.
To remove the SpecialConditionalFormatting
object, use the ConditionalFormattingCollection.Remove, ConditionalFormattingCollection.RemoveAt or ConditionalFormattingCollection.Clear methods.
// Create the rule to identify unique values in cells A2 through A15.
SpecialConditionalFormatting cfRule = worksheet.ConditionalFormattings.AddSpecialConditionalFormatting(worksheet.Range["$A$2:$A$15"], ConditionalFormattingSpecialCondition.ContainUniqueValue);
// Specify formatting options to be applied to cells if the condition is true.
// Set the background color to yellow.
cfRule.Formatting.Fill.BackgroundColor = Color.FromArgb(255, 0xFA, 0xF7, 0xAA);