Class ActionEventArgs<TValue>
Provides information about an ActionBegin, ActionComplete, ActionFailure event.
Inheritance
System.Object
ActionEventArgs<TValue>
Namespace: Syncfusion.Blazor.Kanban
Assembly: Syncfusion.Blazor.dll
Syntax
public class ActionEventArgs<TValue> : Object
Type Parameters
Name | Description |
---|---|
TValue |
Constructors
ActionEventArgs()
Declaration
public ActionEventArgs()
Properties
AddedRecords
Returns the appropriate added data based on the action.
Declaration
public IEnumerable<TValue> AddedRecords { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<TValue> |
Cancel
Defines the cancel option for the action taking place.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
ChangedRecords
Returns the appropriate changed data based on the action.
Declaration
public IEnumerable<TValue> ChangedRecords { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<TValue> |
DeletedRecords
Returns the appropriate deleted data based on the action.
Declaration
public IEnumerable<TValue> DeletedRecords { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<TValue> |
Exception
Returns the failure exceptions.
Declaration
public Exception Exception { get; set; }
Property Value
Type | Description |
---|---|
System.Exception |
Name
Specifies the name of the event.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RequestType
Returns the request type of the current action.
Declaration
public string RequestType { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Target
Returns the target HTML element.
Declaration
public DOM Target { get; set; }
Property Value
Type | Description |
---|---|
DOM |