Skip to main content
A newer version of this page is available. .

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.v18.2.dll

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.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the HideDuration property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also