Class
SplitterPane

The class for splitter pane.

Definition

Constructors

SplitterPane()

Declaration

cs-api-definition
public SplitterPane()

Properties

ChildContent

The template of the pane.

Declaration

cs-api-definition
[Parameter]
public RenderFragment ChildContent { get; set; }

Property Value

RenderFragment

Class

The CSS class that will be rendered on the main element.

Declaration

cs-api-definition
[Parameter]
public string Class { get; set; }

Property Value

string

Collapsed

Specifies if the pane is collapsed.

Declaration

cs-api-definition
[Parameter]
public bool Collapsed { get; set; }

Property Value

bool

CollapsedChanged

Triggers when Collapsed parameter has changed.

Declaration

cs-api-definition
[Parameter]
public EventCallback<bool> CollapsedChanged { get; set; }

Property Value

EventCallback<bool>

Collapsible

Specifies if the pane can be expanded or collapsed.

Declaration

cs-api-definition
[Parameter]
public bool Collapsible { get; set; }

Property Value

bool

Max

Specifies the maximum size of the pane in pixels or percentages.

Declaration

cs-api-definition
[Parameter]
public string Max { get; set; }

Property Value

string

Min

Specifies the minimum size of the pane in pixels or percentages.

Declaration

cs-api-definition
[Parameter]
public string Min { get; set; }

Property Value

string

Resizable

Specifies if the pane can be resized.

Declaration

cs-api-definition
[Parameter]
public bool Resizable { get; set; }

Property Value

bool

Size

Specifies the size of the pane in pixels or percentages. Has to be between the Min and Max properties.

Declaration

cs-api-definition
[Parameter]
public string Size { get; set; }

Property Value

string

SizeChanged

Triggers when Size parameter has changed.

Declaration

cs-api-definition
[Parameter]
public EventCallback<string> SizeChanged { get; set; }

Property Value

EventCallback<string>

TabIndex

Specifies the TabIndex of the SplitterPane component.

Declaration

cs-api-definition
[Parameter]
public int? TabIndex { get; set; }

Property Value

int?

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.

Declaration

cs-api-definition
[Parameter]
public bool Visible { get; set; }

Property Value

bool

Methods

BuildRenderTree(RenderTreeBuilder)

Declaration

cs-api-definition
protected override void BuildRenderTree(RenderTreeBuilder __builder)

Parameters

__builder

RenderTreeBuilder

Overrides ComponentBase.BuildRenderTree(RenderTreeBuilder)

Dispose()

Declaration

cs-api-definition
public void Dispose()

Implements IDisposable.Dispose()

OnInitializedAsync()

Declaration

cs-api-definition
protected override Task OnInitializedAsync()

Returns

Task

Overrides ComponentBase.OnInitializedAsync()

OnParametersSetAsync()

Declaration

cs-api-definition
protected override Task OnParametersSetAsync()

Returns

Task

Overrides ComponentBase.OnParametersSetAsync()

SetParametersAsync(ParameterView)

Declaration

cs-api-definition
public override Task SetParametersAsync(ParameterView parameters)

Parameters

parameters

ParameterView

Returns

Task

Overrides ComponentBase.SetParametersAsync(ParameterView)