wpf-devexpress-dot-xpf-dot-docking-dot-layoutpanel-1041bdfb.md
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.2.dll
NuGet Package : DevExpress.Wpf.Docking
public DockItemState DockItemState { get; }
Public ReadOnly Property DockItemState As DockItemState
| 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.
|
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