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

DockPanel.HideImmediately() Method

In This Article

Hides the current auto-hidden panel immediately without a sliding animation effect.

Namespace: DevExpress.XtraBars.Docking

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public virtual void HideImmediately()

#Remarks

This method allows you to hide a visible panel. If the panel is in auto-hide mode and it’s visible, the HideImmediately method hides it without a sliding animation effect. To hide a panel which is in auto-hide mode with a sliding effect, use the DockPanel.HideSliding method.

In order to display an auto-hidden DockPanel, use the DockPanel.Show or DockPanel.ShowSliding method. The first one displays a panel immediately, while the second uses a sliding animation effect to display a panel.

See Also