ClassSplitterPane
The class for splitter pane.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public class SplitterPane : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseSplitterPane
Implements:
Inherited Members
Constructors
SplitterPane()
Declaration
public SplitterPane()
Properties
ChildContent
The template of the pane.
Declaration
[Parameter]
public RenderFragment ChildContent { get; set; }
Property Value
Class
The CSS class that will be rendered on the main element.
Collapsed
Specifies if the pane is collapsed.
CollapsedChanged
Triggers when Collapsed parameter has changed.
Declaration
[Parameter]
public EventCallback<bool> CollapsedChanged { get; set; }
Property Value
Collapsible
Specifies if the pane can be expanded or collapsed.
Max
Specifies the maximum size of the pane in pixels or percentages.
Min
Specifies the minimum size of the pane in pixels or percentages.
Resizable
Specifies if the pane can be resized.
Size
Specifies the size of the pane in pixels or percentages. Has to be between the Min and Max properties.
SizeChanged
Triggers when Size parameter has changed.
Declaration
[Parameter]
public EventCallback<string> SizeChanged { get; set; }
Property Value
TabIndex
Specifies the TabIndex of the SplitterPane component.
Visible
Specifies if the pane is displayed. This is different from the "Collapsed" parameter, which controls whether the content of the pane is visible or not, but its action buttons for expand, collapse and resize actions are always visible.
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
__builder
Overrides
Dispose()
Declaration
public void Dispose()
Implements
SetParametersAsync(ParameterView)
Declaration
public override Task SetParametersAsync(ParameterView parameters)
Parameters
parameters
Returns
Overrides