New to Telerik UI for WinFormsStart a free 30-day trial

Defines the allowed dock positions for a DockWindow.

Definition

Namespace:Telerik.WinControls.UI.Docking

Assembly:Telerik.WinControls.RadDock.dll

Syntax:

C#
[Flags]
public enum AllowedDockPosition

Fields

The default dock positions are defined.

C#
All = Left | Top | Right | Bottom | Fill

All dock positions, including the document ones, are defined.

C#
AllDocuments = All | Documents

Indicates that the DockWindow will be docked to the bottom edge of the drop target.

C#
Bottom = 8

Indicates that the DockWindow will be docked as a Document Window to the bottom edge of the drop target.

C#
BottomDocument = 256
C#
Documents = LeftDocument | TopDocument | RightDocument | BottomDocument

Indicates that the DockWindow will be added as a child of the drop target.

C#
Fill = 16

Indicates that the DockWindow will be docked to the left edge of the drop target.

C#
Left = 1

Indicates that the DockWindow will be docked as a Document Window to the left edge of the drop target.

C#
LeftDocument = 32

No dock allowed.

C#
None = 0

Indicates that the DockWindow will be docked to the right edge of the drop target.

C#
Right = 4

Indicates that the DockWindow will be docked as a Document Window to the right edge of the drop target.

C#
RightDocument = 128

Indicates that the DockWindow will be docked to the top edge of the drop target.

C#
Top = 2

Indicates that the DockWindow will be docked as a Document Window to the top edge of the drop target.

C#
TopDocument = 64