DevZest WPF Docking
AllowedDockTreePositions Enumeration |
Specifies the allowed dock tree positions for DockItem.
Namespace: DevZest.Windows.Docking
Assembly: DevZest.WpfDocking (in DevZest.WpfDocking.dll) Version: 2.5.0.0 (2.5.5912.0)
Syntax
Members
Member name | Value | Description | |
---|---|---|---|
Floating | 1 | Floating above DockControl allowed. | |
Left | 2 | Dock to left side of DockControl allowed. | |
Right | 4 | Dock to right side of DockControl allowed. | |
Top | 8 | Docked to top side of DockControl allowed. | |
Bottom | 16 | Docked to bottom side of DockControl allowed. | |
Document | 32 | Docked to center of DockControl allowed. | |
ToolWindow | 31 | The combination of Left, Right, Top, Bottom and Floating. | |
All | 63 | The combination of Left, Right, Top, Bottom, Document and Floating. |
Remarks
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
See Also