Skip to main content

DataUpdateAnimationSettings.HideDuration Property

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

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 DataUpdateAnimationSettings.HoldDuration.

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

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

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

See Also