Class
DockManagerState

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:

cs-api-definition
public class DockManagerState

Inheritance: objectDockManagerState

Constructors

DockManagerState()

Declaration

cs-api-definition
public DockManagerState()

Properties

FloatingPanesState

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.

Declaration

cs-api-definition
public IList<DockManagerSplitPaneState> FloatingPanesState { get; set; }

Property Value

IList<DockManagerSplitPaneState>

RootPaneState

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.

Declaration

cs-api-definition
public DockManagerSplitPaneState RootPaneState { get; set; }

Property Value

DockManagerSplitPaneState