DockManagerSplitPane
Represents a split pane in the DockManager. Children: Panes.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public class DockManagerSplitPane : DockManagerPaneBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseBaseComponentDockManagerPaneBaseDockManagerSplitPane
Implements:
Inherited Members
Constructors
public DockManagerSplitPane()
Methods
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Overrides:
protected override void OnInitialized()
Overrides:
protected override void OnParametersSet()
Overrides:
Properties
Defines the height of the floating window when this pane is undocked. Accepts CSS values like "400px", "50%", or "20em". Used to control the initial size of floating windows.
[Parameter]
public string FloatingHeight { get; set; }
Fires when the floating window height changes due to user resizing or programmatic updates. Provides the new height as a CSS string value. Use for persisting user preferences or updating related components.
[Parameter]
public EventCallback<string> FloatingHeightChanged { get; set; }
Specifies the horizontal position of the floating window relative to the viewport. Accepts CSS values like "200px", "15%", or "10em". Determines the initial X-coordinate when the pane becomes floating.
[Parameter]
public string FloatingLeft { get; set; }
Fires when the floating window's left position changes due to user dragging or programmatic updates. Provides the new left position as a CSS string value. See also FloatingLeft.
[Parameter]
public EventCallback<string> FloatingLeftChanged { get; set; }
Specifies the vertical position of the floating window relative to the viewport. Accepts CSS values like "100px", "10%", or "5em". Determines the initial Y-coordinate when the pane becomes floating.
[Parameter]
public string FloatingTop { get; set; }
Fires when the floating window's top position changes due to user dragging or programmatic updates. Provides the new top position as a CSS string value. See also FloatingTop.
[Parameter]
public EventCallback<string> FloatingTopChanged { get; set; }
Defines the width of the floating window when this pane is undocked. Accepts CSS values like "600px", "75%", or "30em". Used to control the initial size of floating windows.
[Parameter]
public string FloatingWidth { get; set; }
Fires when the floating window width changes due to user resizing or programmatic updates. Provides the new width as a CSS string value. Use for persisting user preferences or updating related components.
[Parameter]
public EventCallback<string> FloatingWidthChanged { get; set; }
Specifies how child panes are arranged within the splitter. Horizontal arranges panes side-by-side, Vertical stacks them vertically. Default is Horizontal.
[Parameter]
public DockManagerPaneOrientation Orientation { get; set; }
Defines the child panes contained within this split pane. Children: DockManagerContentPane, DockManagerTabGroupPane, DockManagerSplitPane.
[Parameter]
public RenderFragment Panes { get; set; }
public IList<DockManagerPaneBase> PanesCollection { get; set; }