Back to Devexpress

GridConditionRule Enum

aspnet-devexpress-dot-web-ca608a4e.md

latest3.2 KB
Original Source

GridConditionRule Enum

Lists values that specify the format condition rule applied to cells by the GridViewFormatConditionHighlight condition.

Namespace : DevExpress.Web

Assembly : DevExpress.Web.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
public enum GridConditionRule
vb
Public Enum GridConditionRule

Members

NameDescription
None

Cell highlighting is disabled.

| | Equal |

Highlight cells whose values are equal to the value specified by the GridFormatConditionHighlight.Value1 property.

| | NotEqual |

Highlight cells whose values are not equal to the value specified by the GridFormatConditionHighlight.Value1 property.

| | Between |

Highlight cells whose values are between values specified by the GridFormatConditionHighlight.Value1 and GridFormatConditionHighlight.Value2 properties.

| | NotBetween |

Highlight cells whose values are not between values specified by the GridFormatConditionHighlight.Value1 and GridFormatConditionHighlight.Value2 properties.

| | Less |

Highlight cells whose values are less than the value specified by the GridFormatConditionHighlight.Value1 property.

| | Greater |

Highlight cells whose values are greater than the value specified by the GridFormatConditionHighlight.Value1 property.

| | GreaterOrEqual |

Highlight cells whose values are greater than or equal to the value specified by the GridFormatConditionHighlight.Value1 property.

| | LessOrEqual |

Highlight cells whose values are less than or equal to the value specified by the GridFormatConditionHighlight.Value1 property.

| | Expression |

Highlight cells whose values fit the expression specified by the GridFormatConditionHighlight.Expression property.

|

The following properties accept/return GridConditionRule values:

Remarks

Values listed by this enumerator are used to set the GridFormatConditionHighlight.Rule property of a format condition.

See Also

Conditional Formatting

DevExpress.Web Namespace