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

Represents the complete state configuration of a TelerikDockManager component, including all pane layouts and floating windows. This class is used for state persistence, restoration, and programmatic layout management.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class DockManagerState

Inheritance: objectDockManagerState

Constructors

C#
public DockManagerState()

Properties

Gets or sets the collection of state objects for floating window panes that exist outside the main dock layout. Each item represents an independent floating window with its own position, size, and content configuration.

C#
public IList<DockManagerSplitPaneState> FloatingPanesState { get; set; }

Gets or sets the state of the root split pane that contains the main dock layout structure. This pane serves as the container for all docked content and defines the primary layout hierarchy.

C#
public DockManagerSplitPaneState RootPaneState { get; set; }