Skip to main content

DataUpdateAnimationSettings.HoldDuration Property

Gets or sets the data update formatting hold 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 HoldDuration { 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 HoldDuration
DataUpdateFormatCondition
.AnimationSettings .HoldDuration

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 the limited amount of time defined using the HoldDuration.

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

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

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

See Also