wpf-devexpress-dot-xpf-dot-core-dot-conditionalformatting-9b7df110.md
Lists the values that specify the rule for the data update conditional format.
Namespace : DevExpress.Xpf.Core.ConditionalFormatting
Assembly : DevExpress.Xpf.Core.v25.2.dll
NuGet Package : DevExpress.Wpf.Core
public enum DataUpdateRule
Public Enum DataUpdateRule
| Name | Description |
|---|---|
Never |
The data update formatting is never applied.
|
| Always |
The data update formatting is applied when a corresponding value decreases or increases.
|
| Increase |
The data update formatting is applied when a corresponding value increases.
|
| Decrease |
The data update formatting is applied when a corresponding value decreases.
|
| Custom |
The data update formatting is applied according to a custom logic defined in the TableView.CustomDataUpdateFormatCondition (or TreeListView.CustomDataUpdateFormatCondition) event handler.
|
The following properties accept/return DataUpdateRule values:
The values listed by the DataUpdateRule enumeration are used to set the DataUpdateFormatCondition.Rule property.
See Also