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

Defines the states, allowed per DockWindow instance.

Definition

Namespace:Telerik.WinControls.UI.Docking

Assembly:Telerik.WinControls.RadDock.dll

Syntax:

C#
[Flags]
public enum AllowedDockState

Fields

All dock states are defined.

C#
All = Docked | TabbedDocument | Hidden | AutoHide | Floating

Indicates that the IDockWindow instance is managed by the auto-hide sub-system of the docking system.

C#
AutoHide = 8

Indicates that the IDockWindow instance is docked.

C#
Docked = 1

Indicates that the IDockWindow instance is floating.

C#
Floating = 16

Indicates that the IDockWindow instance is in a hidden/removed state.

C#
Hidden = 4

Indicates that the IDockWindow instance is docked inside a TabbedDocument interface.

C#
TabbedDocument = 2