dashboard-devexpress-dot-dashboardcommon-4f83f9b8.md
Lists values specifying comparison operators used to apply conditional styles.
Namespace : DevExpress.DashboardCommon
Assembly : DevExpress.Dashboard.v25.2.Core.dll
NuGet Package : DevExpress.Dashboard.Core
public enum DashboardFormatCondition
Public Enum DashboardFormatCondition
| Name | Description |
|---|---|
Greater |
The formatting is applied to elements whose values are greater than that specified by the FormatConditionValue.Value1 property.
|
| GreaterOrEqual |
The formatting is applied to elements whose values are greater than or equal to that specified by the FormatConditionValue.Value1 property.
|
| Less |
The formatting is applied to elements whose values are less than that specified by the FormatConditionValue.Value1 property.
|
| LessOrEqual |
The formatting is applied to elements whose values are less than or equal to that specified by the FormatConditionValue.Value1 property.
|
| Equal |
The formatting is applied to elements whose values are equal to a value assigned to the FormatConditionValue.Value1 property.
|
| NotEqual |
The formatting is applied to elements whose values are not equal to a value assigned to the FormatConditionValue.Value1 property.
|
| Between |
The formatting is applied to elements whose values fall into the range specified by the FormatConditionValue.Value1 and FormatConditionValue.Value2 properties.
|
| NotBetween |
The formatting is applied to elements whose values fall outside of the range specified by the FormatConditionValue.Value1 and FormatConditionValue.Value2 properties.
|
| BetweenOrEqual |
The formatting is applied to elements whose values are between or equal to the FormatConditionValue.Value1 and FormatConditionValue.Value2 property values.
|
| NotBetweenOrEqual |
The formatting is applied to elements whose values are not between or equal to the FormatConditionValue.Value1 and FormatConditionValue.Value2 property values.
|
| ContainsText |
The formatting is applied to elements whose values contain text specified by the FormatConditionValue.Value1 property.
|
The following properties accept/return DashboardFormatCondition values:
Values listed in this enumeration are used to set the FormatConditionValue.Condition property.
See Also