LayoutPanel.DockItemState Property
Gets whether the panel is docked, auto-hidden, floating, or closed. This is a dependency property.
Namespace: DevExpress.Xpf.Docking
Assembly: DevExpress.Xpf.Docking.v25.1.dll
NuGet Package: DevExpress.Wpf.Docking
Declaration
Property Value
| Type | Description |
|---|---|
| DockItemState | A DockItemState enumeration value that specifies whether the panel is docked, auto-hidden, floating, or closed. |
Available values:
| Name | Description |
|---|---|
| Undefined | The panel does not belong to any group. |
| AutoHidden | The panel is auto-hidden. |
| Closed | The panel is closed. |
| Docked | The panel is docked. |
| Floating | The panel is floating. |
Remarks
The DockItemState property gets whether the current panel is docked, auto-hidden, floating, or closed. If the panel does not belong to any group (see BaseLayoutItem.Parent), the DockItemState property returns Undefined.
See Also