Class SplitterPane
Configure each pane and its properties to handle the pane behavior.
Inheritance
System.Object
Syncfusion.Blazor.SfBaseComponent
SplitterPane
Assembly: Syncfusion.Blazor.dll
Syntax
public class SplitterPane : SfBaseComponent
Constructors
SplitterPane()
Declaration
Properties
Collapsed
Specifies whether a pane is collapsed on the initial rendering of the splitter.
Declaration
public bool Collapsed { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Collapsible
Specifies whether a pane is capable to collapse.
Declaration
public bool Collapsible { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Content
Specifies the content of the split pane.
Declaration
public string Content { get; set; }
Property Value
Type |
Description |
System.String |
|
ContentTemplate
Defines the pane content as a template
Declaration
public RenderFragment ContentTemplate { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.RenderFragment |
|
CssClass
Specifies the CSS class names that defines specific user-defined styles and themes
to be appended on the corresponding pane of the Splitter.
It is used to customize the Splitter component panes.
One or more custom CSS classes can be specified to the Splitter panes.
Declaration
public string CssClass { get; set; }
Property Value
Type |
Description |
System.String |
|
Max
Specifies the maximum size of a pane. The pane cannot be resized more than the specified maximum limit.
Declaration
public string Max { get; set; }
Property Value
Type |
Description |
System.String |
|
Min
Specifies the minimum size of a pane. The pane cannot be resized less than the specified minimum size.
Declaration
public string Min { get; set; }
Property Value
Type |
Description |
System.String |
|
Resizable
Specifies the value whether a pane is resizable or not. By default, the Splitter panes are resizable.
You can disable resize functionality for any specific panes using this property.
Declaration
public bool Resizable { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Size
SizeConfigures the properties for each pane. For horizontal splitter, the size act as width.
For vertical splitter, the size act as height.
Declaration
public string Size { get; set; }
Property Value
Type |
Description |
System.String |
|
Methods
OnInitializedAsync()
Declaration
protected override Task OnInitializedAsync()
Returns
Type |
Description |
System.Threading.Tasks.Task |
|
Overrides
Syncfusion.Blazor.SfBaseComponent.OnInitializedAsync()
Declaration
protected override Task OnParametersSetAsync()
Returns
Type |
Description |
System.Threading.Tasks.Task |
|