Class SplitterEvents
Configure the event handlers to handle the events with Splitter component.
Inheritance
System.Object
Syncfusion.Blazor.SfBaseComponent
SplitterEvents
Namespace: Syncfusion.Blazor.Layouts
Assembly: Syncfusion.Blazor.dll
Syntax
public class SplitterEvents : SfBaseComponent
Constructors
SplitterEvents()
Declaration
public SplitterEvents()
Properties
Collapsed
Triggers when the panes get collapsed.
Declaration
public EventCallback<ExpandedEventArgs> Collapsed { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<ExpandedEventArgs> |
Created
Triggers after creating the splitter component with its panes.
Declaration
public EventCallback<object> Created { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<System.Object> |
Destroyed
The event triggers when the splitter is destroyed with its elements.
Declaration
public EventCallback<object> Destroyed { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<System.Object> |
Expanded
Triggers when the panes get expanded.
Declaration
public EventCallback<ExpandedEventArgs> Expanded { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<ExpandedEventArgs> |
OnCollapse
Triggers on collapsing the panes.
Declaration
public EventCallback<BeforeExpandEventArgs> OnCollapse { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<BeforeExpandEventArgs> |
OnExpand
Triggers on expanding the panes.
Declaration
public EventCallback<BeforeExpandEventArgs> OnExpand { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<BeforeExpandEventArgs> |
OnResizeStart
Triggers when the split pane is started to resize.
Declaration
public EventCallback<ResizeEventArgs> OnResizeStart { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<ResizeEventArgs> |
OnResizeStop
Triggers when the resizing of split pane is stopped.
Declaration
public EventCallback<ResizingEventArgs> OnResizeStop { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<ResizingEventArgs> |
OnSanitizeHtml
Event triggers before sanitize the value.
Declaration
public EventCallback<BeforeSanitizeHtmlArgs> OnSanitizeHtml { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<BeforeSanitizeHtmlArgs> |
Parent
Declaration
protected SfSplitter Parent { get; set; }
Property Value
Type | Description |
---|---|
SfSplitter |
Resizing
Triggers when a split pane is being resized.
Declaration
public EventCallback<ResizingEventArgs> Resizing { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<ResizingEventArgs> |
Methods
OnInitializedAsync()
Declaration
protected override Task OnInitializedAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task |
Overrides
Syncfusion.Blazor.SfBaseComponent.OnInitializedAsync()