Class ActionEventArgs<T>
Provides information about the CRUD and Navigation actions of scheduler.
Inheritance
Namespace: Syncfusion.Blazor.Schedule
Assembly: Syncfusion.Blazor.dll
Syntax
public class ActionEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T | The type of the values of schedule events. |
Constructors
ActionEventArgs()
Declaration
public ActionEventArgs()
Properties
ActionType
Gets the type of current action.
Declaration
public ActionType ActionType { get; }
Property Value
Type | Description |
---|---|
ActionType | One of the ActionType enumeration. |
AddedRecords
Gets or sets the added data based on the specified action.
Declaration
public List<T> AddedRecords { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<T> |
Cancel
Gets or sets whether the specified action of Scheduler should be canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
ChangedRecords
Gets or sets the changed data based on the specified action.
Declaration
public List<T> ChangedRecords { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<T> |
DeletedRecords
Gets or sets the deleted data based on the specified action.
Declaration
public List<T> DeletedRecords { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<T> |
Error
Gets the details of an action failure.
Declaration
public Exception Error { get; set; }
Property Value
Type | Description |
---|---|
System.Exception | An exception representing the details of the action failure. |
GroupIndex
Gets the group index of the specified action which helps to get the resource information using GetResourceByIndex(Int32) method.
Declaration
public int GroupIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts an integer value. |