Enum AllowedDockTreePositions
Specifies the allowed dock tree positions for DockItem.
Namespace: DevZest.Windows.Docking
Assembly: DevZest.WpfDocking.dll
Syntax
[Flags]
[Serializable]
public enum AllowedDockTreePositions
Remarks
This enumeration has a System.FlagsAttribute attribute that allows a bitwise combination of its member values.
Fields
| Name | Description |
|---|---|
| All | The combination of Left, Right, Top, Bottom, Document and Floating. |
| Bottom | Docked to bottom side of DockControl allowed. |
| Document | Docked to center of DockControl allowed. |
| Floating | Floating above DockControl allowed. |
| Left | Dock to left side of DockControl allowed. |
| Right | Dock to right side of DockControl allowed. |
| ToolWindow | The combination of Left, Right, Top, Bottom and Floating. |
| Top | Docked to top side of DockControl allowed. |