Skip to main content

ConditionRule Enum

Contains rules used to determine whether to apply a conditional format to a cell.

Namespace: DevExpress.WinUI.Grid

Assembly: DevExpress.WinUI.Grid.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

public enum ConditionRule

Members

Name Description
None

The format is not applied to cells.

Equal

The format is applied to cells whose values match the Value1 property.

NotEqual

The format is applied to cells whose values do not match the Value1 property.

Between

The format is applied to cells whose values fall into the range specified by the Value1 and Value2 properties.

NotBetween

The format is applied to cells whose values fall outside of the range specified by the Value1 and Value2 properties.

Less

The format is applied to cells whose values are less than the Value1 property.

Greater

The format is applied to cells whose values are greater than the Value1 property.

GreaterOrEqual

The format is applied to cells whose values are greater or equal to the Value1 property.

LessOrEqual

The format is applied to cells whose values are less or equal to the Value1 property.

Expression

The format is applied to cells that match the specified Expression.

Related API Members

The following properties accept/return ConditionRule values:

See Also