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

DockingOptions.HideImmediatelyOnAutoHide Property

Gets or sets whether dock panels are immediately hidden when their auto hide functionality is enabled.

Namespace: DevExpress.XtraBars.Docking

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

[Browsable(false)]
[DefaultValue(false)]
[XtraSerializableProperty]
public virtual bool HideImmediatelyOnAutoHide { get; set; }

Property Value

Type Default Description
Boolean **false**

true to hide dock panels immediately when their auto hide functionality is enabled; false to hide dock panels using the sliding animation effect, and only when the mouse pointer leaves their area.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to HideImmediatelyOnAutoHide
WinForms Controls SnapDockManager
.DockingOptions.HideImmediatelyOnAutoHide
DockManager
.DockingOptions.HideImmediatelyOnAutoHide
Reporting XRDesignDockManager
.DockingOptions.HideImmediatelyOnAutoHide

Remarks

The HideImmediatelyOnAutoHide property specifies the manner in which the dock panel is hidden after its auto hide feature has been enabled (when the hide button Hide_button is clicked or the panel’s DockPanel.Visibility property is set to DockVisibility.AutoHide).

Refer to the Working with Panel Containers topic for more information.

See Also