Enum VisualMode
Determines the visual mode behavior for the SfMultiSelect Dropdown component.
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum VisualMode
Remarks
Controls how selected items are displayed in the MultiSelect component, allowing for delimiter, box, and checkbox visual representations.
Examples
VisualMode mode = VisualMode.Delimiter;
Fields
| Name | Description |
|---|---|
| Box | Shows selected items in boxed segments inside the MultiSelect field. |
| CheckBox | Each selection is displayed with a checkbox next to items in the dropdown list. |
| Default | Specifies the default visual mode where selected items are displayed as a comma-separated list. |
| Delimiter | Displays selected items in the MultiSelect as a delimited string based on the configured delimiter. |