Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxDockingManager.AutoHideMovingInterval Property

Specifies the time interval that passes between docking control displacements when it slides from the hidden to visible state or vice versa.

#Declaration

Delphi
property AutoHideMovingInterval: Integer read; write; default dxAutoHideMovingInterval;

#Property Value

Type
Integer

#Remarks

Enabling the auto hide feature for a dock control implies that the control can be made visible or hidden in response to specific end-user actions. Hiding the control or making it visible, in this instance, is implemented using a sliding animation effect. The control is moved with the specified time interval and size step. The time interval is specified by the AutoHideMovingInterval property. This property’s value is set in milliseconds.

For instance, if the AutoHideMovingInterval property value is 1, the control will be moved by the specified offset each millisecond. If the constant value is 0, the control will be displayed immediately.

Setting the AutoHideMovingInterval property to smaller values results in smoother animation. However, animation also depends upon the moving offset, which is specified by the AutoHideMovingSize property. The two properties must be used in conjunction to achieve the desired result.

The default value of the AutoHideMovingInterval property is dxAutoHideMovingInterval.

See Also