Defines the allowed dock positions for a DockWindow.
Definition
Namespace:Telerik.WinControls.UI.Docking
Assembly:Telerik.WinControls.RadDock.dll
Syntax:
[Flags]
public enum AllowedDockPosition
Fields
The default dock positions are defined.
All = Left | Top | Right | Bottom | Fill
All dock positions, including the document ones, are defined.
AllDocuments = All | Documents
Indicates that the DockWindow will be docked to the bottom edge of the drop target.
Bottom = 8
Indicates that the DockWindow will be docked as a Document Window to the bottom edge of the drop target.
BottomDocument = 256
Documents = LeftDocument | TopDocument | RightDocument | BottomDocument
Indicates that the DockWindow will be added as a child of the drop target.
Fill = 16
Indicates that the DockWindow will be docked to the left edge of the drop target.
Left = 1
Indicates that the DockWindow will be docked as a Document Window to the left edge of the drop target.
LeftDocument = 32
No dock allowed.
None = 0
Indicates that the DockWindow will be docked to the right edge of the drop target.
Right = 4
Indicates that the DockWindow will be docked as a Document Window to the right edge of the drop target.
RightDocument = 128
Indicates that the DockWindow will be docked to the top edge of the drop target.
Top = 2
Indicates that the DockWindow will be docked as a Document Window to the top edge of the drop target.
TopDocument = 64