aspnet-devexpress-dot-web-ca608a4e.md
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
public enum GridConditionRule
Public Enum GridConditionRule
| Name | Description |
|---|---|
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:
Values listed by this enumerator are used to set the GridFormatConditionHighlight.Rule property of a format condition.
See Also