SplitterPane
Represents a pane inside a TelerikSplitter. Configure content via ChildContent, sizing with Size (bounded by Min and Max), visibility through Visible, expand/collapse with Collapsible and Collapsed (CollapsedChanged), and resizing using Resizable. Supports optional scrolling via Scrollable and custom CSS through Class.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public class SplitterPane : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseSplitterPane
Implements:
Inherited Members
Constructors
public SplitterPane()
Methods
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Overrides:
public void Dispose()
Implements:
public override Task SetParametersAsync(ParameterView parameters)
Overrides:
Properties
The template of the pane.
[Parameter]
public RenderFragment ChildContent { get; set; }
The CSS class that will be rendered on the main element.
[Parameter]
public string Class { get; set; }
Triggers when Collapsed parameter has changed.
[Parameter]
public EventCallback<bool> CollapsedChanged { get; set; }
Specifies if the pane can be expanded or collapsed.
[Parameter]
public bool Collapsible { get; set; }
Specifies the maximum size of the pane in pixels or percentages.
[Parameter]
public string Max { get; set; }
Specifies the minimum size of the pane in pixels or percentages.
[Parameter]
public string Min { get; set; }
Specifies if the pane can be resized.
[Parameter]
public bool Resizable { get; set; }
Specifies if the pane shows scrollbars when the content does not fit.
[Parameter]
public bool Scrollable { get; set; }
Specifies the size of the pane in pixels or percentages. Has to be between the Min and Max properties.
[Parameter]
public string Size { get; set; }
Triggers when Size parameter has changed.
[Parameter]
public EventCallback<string> SizeChanged { get; set; }
[Accessibility] Specifies the TabIndex of the SplitterPane component.
[Parameter]
public int? TabIndex { get; set; }