Class ActionEventArgs<TValue>
Inheritance
Namespace: Syncfusion.Blazor.Kanban
Assembly: Syncfusion.Blazor.dll
Syntax
public class ActionEventArgs<TValue> : Object
Type Parameters
Name |
---|
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> | An enumeration of type TValue representing the data added to the Kanban board. |
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> | An IEnumerable of the appropriate type TValue representing the data changed on the Kanban board. |
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> | An enumeration of type TValue representing the data deleted from the Kanban board. |
Exception
Returns the failure exceptions.
Declaration
public Exception Exception { get; set; }
Property Value
Type | Description |
---|---|
System.Exception | An instance of the Exception class representing the failure exception thrown by the Kanban board. |
KeyField
Defines the key field of the Kanban board. The Kanban renders its layout based on this key field.
Declaration
public string KeyField { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
RequestType
Returns the request type of the current action.
Declaration
public string RequestType { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |