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

BaseLayoutItem.IsHidden Property

Gets whether the current Layout Item is hidden. This is a dependency property.

Namespace: DevExpress.Xpf.Docking

Assembly: DevExpress.Xpf.Docking.v24.2.dll

NuGet Package: DevExpress.Wpf.Docking

#Declaration

public bool IsHidden { get; }

#Property Value

Type Description
Boolean

true if the current layout item is hidden; otherwise, false.

#Remarks

Layout Items can be hidden in Customization Mode. To hide a layout item via code, use the LayoutController.Hide method. The IsHidden returns true for hidden items. These are stored in the DockLayoutManager.HiddenItems collection. Use the LayoutController.Restore method to restore a hidden layout item.

See Also