Class SplitterPane
The class for splitter pane.
Inheritance
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class SplitterPane : ComponentBase, IDisposable
Constructors
SplitterPane()
Declaration
public SplitterPane()
Properties
ChildContent
The template of the pane.
Declaration
public RenderFragment ChildContent { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
Class
The CSS class that will be rendered on the main element.
Declaration
public string Class { get; set; }
Property Value
System.String
|
Collapsed
Specifies if the pane is collapsed.
Declaration
public bool Collapsed { get; set; }
Property Value
System.Boolean
|
CollapsedChanged
Triggers when Collapsed parameter has changed.
Declaration
public EventCallback<bool> CollapsedChanged { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback<System.Boolean>
|
Collapsible
Specifies if the pane can be expanded or collapsed.
Declaration
public bool Collapsible { get; set; }
Property Value
System.Boolean
|
Max
Specifies the maximum size of the pane in pixels or percentages.
Declaration
public string Max { get; set; }
Property Value
System.String
|
Min
Specifies the minimum size of the pane in pixels or percentages.
Declaration
public string Min { get; set; }
Property Value
System.String
|
Resizable
Specifies if the pane can be resized.
Declaration
public bool Resizable { get; set; }
Property Value
System.Boolean
|
Size
Specifies the size of the pane in pixels or percentages. Has to be between the Min and Max properties.
Declaration
public string Size { get; set; }
Property Value
System.String
|
SizeChanged
Triggers when Size parameter has changed.
Declaration
public EventCallback<string> SizeChanged { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback<System.String>
|
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder
__builder
|
Dispose()
Declaration
public void Dispose()
OnInitializedAsync()
Declaration
protected override Task OnInitializedAsync()
Returns
System.Threading.Tasks.Task
|
OnParametersSetAsync()
Declaration
protected override Task OnParametersSetAsync()
Returns
System.Threading.Tasks.Task
|
SetParametersAsync(ParameterView)
Declaration
public override Task SetParametersAsync(ParameterView parameters)
Parameters
Microsoft.AspNetCore.Components.ParameterView
parameters
|
Returns
System.Threading.Tasks.Task
|