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

DockLayoutManager.ShowInvisibleItems Property

Gets or sets whether invisible items are displayed within a layout. This is a dependency property.

Namespace: DevExpress.Xpf.Docking

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

Declaration

public bool? ShowInvisibleItems { get; set; }

Property Value

Type Description
Nullable<Boolean>

A Nullable Boolean value that specifies whether invisible items are displayed within the layout.

Remarks

An item’s visibility within a layout is specified by the Visibility property. Invisible items are those that have the Visibility property set to Hidden or Collapsed. By default, when the ShowInvisibleItems property is set to null, invisible items are not displayed when layout customization is not active, and they become visible when layout customization starts. Set the ShowInvisibleItems property to true to always display invisible items. Set this property to false to hide invisible items, even in customization mode.

See Also