Class SelectionType
Defines the available modes for selecting tasks on the Kanban board.
Inheritance
System.Object
SelectionType
Namespace: Syncfusion.Blazor.Kanban
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class SelectionType : Enum
Remarks
SelectionType dictates whether users can select one, multiple, or no tasks at all.
Fields
Multiple
Allows for the selection of multiple tasks at once.
Declaration
public const SelectionType Multiple
Field Value
Type | Description |
---|---|
SelectionType | Represents a multi-select mode permitting selection of several tasks simultaneously. |
Remarks
Use this mode to perform bulk actions on multiple tasks.
None
Disables selection of any tasks.
Declaration
public const SelectionType None
Field Value
Type | Description |
---|---|
SelectionType | Represents a mode where task selection is not allowed. |
Remarks
Useful in scenarios where task selection should be temporarily or permanently disabled.
Single
Allows for the selection of a single task.
Declaration
public const SelectionType Single
Field Value
Type | Description |
---|---|
SelectionType | Represents a single-select mode enabling task selection one at a time. |
Remarks
This mode is ideal for focusing on a single task operation or overview.