Skip to main content

DataUpdateAnimationSettings.ShowDuration Property

Gets or sets the data update formatting show duration. This is a dependency property.

Namespace: DevExpress.Xpf.Core.ConditionalFormatting

Assembly: DevExpress.Xpf.Core.v23.2.dll

NuGet Package: DevExpress.Wpf.Core

Declaration

public Duration ShowDuration { get; set; }

Property Value

Type Description
Duration

The animation duration.

Property Paths

You can access this nested property as listed below:

Object Type Path to ShowDuration
DataUpdateFormatCondition
.AnimationSettings .ShowDuration

Remarks

The TableView (or TreeListView) can apply a specific formatting to the cells and rows whose values have changed: a data update formatting. The data update formatting is applied for a limited amount of time defined using the DataUpdateAnimationSettings.HoldDuration.

To apply and reverse the applied data update formatting with an animation effect, define the animation duration using the ShowDuration and the DataUpdateAnimationSettings.HideDuration property respectively.

Use the TableView.DataUpdateAnimationShowDuration (or the TreeListView.DataUpdateAnimationShowDuration) property to define the animation show duration for all the data update conditions within the current view. To set the animation show duration for the specific data update condition, use the ShowDuration property.

See the Data Update Animation section of the Formatting Changing Values topic to learn more about data update animation in GridControl.

See Also