Class ChoiceMode
Represents the possible selection mode for Choice type.
Inheritance
System.Object
ChoiceMode
Namespace: Syncfusion.XForms.Buttons
Assembly: Syncfusion.Buttons.XForms.dll
Syntax
public sealed class ChoiceMode : Enum
Fields
Single
It enables to select only one chip item at a time. If you select any new item, the previously selected one is deselected and new item changed to selected state. Atleast one item must be in selected state and the selected item cannot be deselect with ChoiceMode is Single.
Declaration
public const ChoiceMode Single
Field Value
Type |
---|
ChoiceMode |
SingleOrNone
It enables to select only one chip item at a time. If you select any new item, the previously selected one is deselect and new item changed to selected state. Unlike Single , it is possible to deselect the selected item and keep all the items in an SfChipGroup in deselected state.
Declaration
public const ChoiceMode SingleOrNone
Field Value
Type |
---|
ChoiceMode |