Class TelerikSplitter
The class for the Telerik Splitter component.
Inherited Members
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class TelerikSplitter : BaseComponent, IDisposable, ISplitterContainer
Constructors
TelerikSplitter()
Declaration
public TelerikSplitter()
Properties
AriaLabel
Specifies the aria-label attribute of the component.
Declaration
public string AriaLabel { get; set; }
Property Value
System.String
|
Height
Specifies the height of the component.
Declaration
public string Height { get; set; }
Property Value
System.String
|
OnCollapse
The event that is triggered after a pane is collapsed.
Declaration
public EventCallback<SplitterCollapseEventArgs> OnCollapse { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback<SplitterCollapseEventArgs>
|
OnExpand
The event that is triggered after a pane is expanded.
Declaration
public EventCallback<SplitterExpandEventArgs> OnExpand { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback<SplitterExpandEventArgs>
|
OnResize
The event that is triggered after a pane is resized.
Declaration
public EventCallback<SplitterResizeEventArgs> OnResize { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback<SplitterResizeEventArgs>
|
Orientation
Specifies the orientation of the component.
Declaration
public SplitterOrientation Orientation { get; set; }
Property Value
SplitterOrientation
|
SplitterPanes
Specifies the splitter panes. Add SplitterPane tags inside this tag.
Declaration
public RenderFragment SplitterPanes { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
Width
Specifies the width of the component.
Declaration
public string Width { get; set; }
Property Value
System.String
|
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder
__builder
|
Dispose()
GetState()
Gets the current state of the component.
Declaration
public SplitterState GetState()
Returns
SplitterState
|
OnAfterRenderAsync(Boolean)
Declaration
protected override Task OnAfterRenderAsync(bool firstRender)
Parameters
System.Boolean
firstRender
|
Returns
System.Threading.Tasks.Task
|
Overrides
SetState(SplitterState)
Sets the new state of the component.
Declaration
public void SetState(SplitterState newState)
Parameters
SplitterState
newState
|