ClassTelerikDockManager
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public class TelerikDockManager : BaseComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseBaseComponentTelerikDockManager
Implements:
Inherited Members
Constructors
TelerikDockManager()
Declaration
public TelerikDockManager()
Properties
DockManagerFloatingPanes
The floating panes of the DockManager.
Declaration
[Parameter]
public RenderFragment DockManagerFloatingPanes { get; set; }
Property Value
DockManagerPanes
The root panes of the DockManager.
Declaration
[Parameter]
public RenderFragment DockManagerPanes { get; set; }
Property Value
Height
The height of the DockManager.
OnDock
The event that will be invoked when a pane is docked. The event is cancelable.
Declaration
[Parameter]
public EventCallback<DockManagerDockEventArgs> OnDock { get; set; }
Property Value
OnPaneResize
The event that will be invoked when a dock manager splitter pane is resized.
Declaration
[Parameter]
public EventCallback<DockManagerPaneResizeEventArgs> OnPaneResize { get; set; }
Property Value
OnPin
The event that will be invoked when a pane is pinned. The event is cancelable.
Declaration
[Parameter]
public EventCallback<DockManagerPinEventArgs> OnPin { get; set; }
Property Value
OnStateChanged
The event that will be invoked when the dock manager state is changed.
Declaration
[Parameter]
public EventCallback<DockManagerStateEventArgs> OnStateChanged { get; set; }
Property Value
OnStateInit
The event that will be invoked when the dock manager is initialized. Through the event arguments, you can access/modify the state of the dock manager.
Declaration
[Parameter]
public EventCallback<DockManagerStateEventArgs> OnStateInit { get; set; }
Property Value
OnUndock
The event that will be invoked when a pane is undocked. The event is cancelable.
Declaration
[Parameter]
public EventCallback<DockManagerUndockEventArgs> OnUndock { get; set; }
Property Value
OnUnpin
The event that will be invoked when a pane is unpinned. The event is cancelable.
Declaration
[Parameter]
public EventCallback<DockManagerUnpinEventArgs> OnUnpin { get; set; }
Property Value
Orientation
The dock manager root splitter orientation. The possible values are Horizontal and Vertical. The default value is Horizontal.
Declaration
[Parameter]
public DockManagerPaneOrientation Orientation { get; set; }
Property Value
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
__builder
Overrides
GetState()
Gets the current state of the DockManager.
Declaration
public DockManagerState GetState()
Returns
OnInitialized()
Declaration
protected override void OnInitialized()
Overrides
SetState(DockManagerState)
Sets the state of the DockManager.
Declaration
public void SetState(DockManagerState state)
Parameters
state