Class CurrentAction
Denotes possible actions that can currently be performed on tasks.
Inheritance
System.Object
CurrentAction
Namespace: Syncfusion.Blazor.Kanban
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class CurrentAction : Enum
Remarks
CurrentAction lists potential operations such as adding, editing, or removing tasks.
Fields
Add
Represents an action to add a task.
Declaration
public const CurrentAction Add
Field Value
Type | Description |
---|---|
CurrentAction | Corresponds to task creation. |
Remarks
Use this action to introduce new tasks into the workflow.
Delete
Represents an action to delete a task.
Declaration
public const CurrentAction Delete
Field Value
Type | Description |
---|---|
CurrentAction | Corresponds to task removal. |
Remarks
Use this action to permanently remove tasks from the workflow.
Edit
Represents an action to edit a task.
Declaration
public const CurrentAction Edit
Field Value
Type | Description |
---|---|
CurrentAction | Corresponds to modifying existing task details. |
Remarks
Employ this action to update task information or status.