windowsforms-devexpress-dot-xtrabars-dot-docking-dot-dockingoptions-a88eb79a.md
Gets or sets whether a panel hides immediately (without animation) when the user unpins the panel.
Namespace : DevExpress.XtraBars.Docking
Assembly : DevExpress.XtraBars.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[Browsable(false)]
[DefaultValue(false)]
[EditorBrowsable(EditorBrowsableState.Never)]
[XtraSerializableProperty]
public virtual bool HideImmediatelyOnAutoHide { get; set; }
<Browsable(False)>
<EditorBrowsable(EditorBrowsableState.Never)>
<DefaultValue(False)>
<XtraSerializableProperty>
Public Overridable Property HideImmediatelyOnAutoHide As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true if a panel hides immediately (without animation) when the user unpins the panel; otherwise, false.
|
You can access this nested property as listed below:
| Object Type | Path to HideImmediatelyOnAutoHide |
|---|---|
| DockManager |
.DockingOptions .HideImmediatelyOnAutoHide
|
Setting the HideImmediatelyOnAutoHide property to true is equivalent to setting the HidePanelsImmediately property to OnAutoHide. See HidePanelsImmediately for more information.
See Also