Class DashboardLayoutEvents
Specifies the DashboardLayout events.
Inheritance
System.Object
Syncfusion.Blazor.SfBaseComponent
DashboardLayoutEvents
Namespace: Syncfusion.Blazor.Layouts
Assembly: Syncfusion.Blazor.dll
Syntax
public class DashboardLayoutEvents : SfBaseComponent
Constructors
DashboardLayoutEvents()
Declaration
public DashboardLayoutEvents()
Properties
Changed
Triggers whenever the panels positions are changed.
Declaration
public EventCallback<ChangeEventArgs> Changed { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<ChangeEventArgs> |
Created
Triggers when Dashboard Layout is created.
Declaration
public EventCallback<object> Created { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<System.Object> |
Destroyed
Triggers when Dashboard Layout is destroyed.
Declaration
public EventCallback<object> Destroyed { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<System.Object> |
Dragging
Triggers while a panel is dragged continuously.
Declaration
public EventCallback<DraggedEventArgs> Dragging { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<DraggedEventArgs> |
OnDragStart
Triggers when a panel is about to drag.
Declaration
public EventCallback<DragStartArgs> OnDragStart { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<DragStartArgs> |
OnDragStop
Triggers when a dragged panel is dropped.
Declaration
public EventCallback<DragStopArgs> OnDragStop { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<DragStopArgs> |
OnResizeStart
Triggers when a panel is start to resize.
Declaration
public EventCallback<ResizeArgs> OnResizeStart { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<ResizeArgs> |
OnResizeStop
Triggers when a panel resize ends.
Declaration
public EventCallback<ResizeArgs> OnResizeStop { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<ResizeArgs> |
Parent
Declaration
protected SfDashboardLayout Parent { get; set; }
Property Value
Type | Description |
---|---|
SfDashboardLayout |
Resizing
Triggers when a panel is being resized continuously.
Declaration
public EventCallback<ResizeArgs> Resizing { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<ResizeArgs> |
Methods
OnInitialized()
Declaration
protected override void OnInitialized()