Back to Devexpress

FormatConditionEnum Enum

windowsforms-devexpress-dot-xtragrid-3d067c89.md

latest4.8 KB
Original Source

FormatConditionEnum Enum

Lists values specifying comparison operators used when applying conditional styles.

Namespace : DevExpress.XtraGrid

Assembly : DevExpress.XtraEditors.v25.2.dll

NuGet Package : DevExpress.Win.Navigation

Declaration

csharp
[ResourceFinder(typeof(ResFinder), "PropertyNamesRes")]
public enum FormatConditionEnum
vb
<ResourceFinder(GetType(ResFinder), "PropertyNamesRes")>
Public Enum FormatConditionEnum

Members

NameDescription
None

The style is not applied to any cell.

| | Equal |

The style is applied to cells (or corresponding rows) whose values match the StyleFormatConditionBase.Value1 property value.

| | NotEqual |

The style is applied to cells (or corresponding rows) whose values do not match the StyleFormatConditionBase.Value1 property value.

| | Between |

The style is applied to cells (or rows) whose values are between the Value1 and Value2 property values exclusive. Enable the BetweenConditionsIncludeEndpoints option to make the Between condition inclusive.

| | NotBetween |

The style is applied to cells (or rows) whose values are not between the Value1 and Value2 property values inclusive. Enable the BetweenConditionsIncludeEndpoints option to make the NotBetween condition exclusive.

| | Less |

The style is applied to cells (or corresponding rows) whose values are less than that specified by the StyleFormatConditionBase.Value1 property.

| | Greater |

The style is applied to cells (or corresponding rows) whose values are greater than that specified by the StyleFormatConditionBase.Value1 property.

| | GreaterOrEqual |

The style is applied to cells (or corresponding rows) whose values are greater or equal to the StyleFormatConditionBase.Value1 property value.

| | LessOrEqual |

The style is applied to cells (or corresponding rows) whose values are less or equal to the StyleFormatConditionBase.Value1 property value.

| | Expression |

The style is applied to cells (or corresponding rows) if the StyleFormatConditionBase.Expression evaluates to true.

|

The following properties accept/return FormatConditionEnum values:

Remarks

StyleFormatCondition objects provide StyleFormatCondition.Column and StyleFormatConditionBase.Appearance properties specifying the column whose values take part in conditional formatting and the style applied to cells (or corresponding rows) that meet the specified condition. The condition is set using the StyleFormatConditionBase.Condition property that accepts values listed by the FormatConditionEnum enumeration. These values specify how cell values should be compared to the StyleFormatConditionBase.Value1 and StyleFormatConditionBase.Value2 properties of the style condition object.

See Also

Condition

DevExpress.XtraGrid Namespace