ClassDockManagerState
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:
public class DockManagerState
Inheritance: objectDockManagerState
Constructors
DockManagerState()
Declaration
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
public IList<DockManagerSplitPaneState> FloatingPanesState { get; set; }
Property Value
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
public DockManagerSplitPaneState RootPaneState { get; set; }
Property Value