Class ChoiceMode
Represents the possible selection mode for Choice type.
Inheritance
System.Object
ChoiceMode
Namespace: Syncfusion.Maui.Toolkit.Chips
Assembly: Syncfusion.Maui.Toolkit.dll
Syntax
public sealed class ChoiceMode : Enum
Fields
Single
Enables selecting only one chip item at a time. If you select a new item, the previously selected one is deselected and the new item is selected. At least one item must be in a selected state, and the selected item cannot be deselected.
Declaration
public const ChoiceMode Single
Field Value
Type |
---|
ChoiceMode |
SingleOrNone
Enables selecting only one chip item at a time. If you select a new item, the previously selected one is deselected, and the new item is selected. Unlike Single, it is possible to deselect the currently selected item, allowing all items in an SfChipGroup to be deselected.
Declaration
public const ChoiceMode SingleOrNone
Field Value
Type |
---|
ChoiceMode |