Enum SelectionMode
Specifies the selection mode for items in a ListBox control.
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum SelectionMode
Remarks
Determines whether a ListBox allows single or multiple items to be selected at once.
Examples
SelectionMode mode = SelectionMode.Multiple;
Fields
| Name | Description |
|---|---|
| Multiple | Enables selection of multiple items in the list. |
| Single | Restricts selection to a single item at a time in the list. |