SelectionMode
public enum SelectionMode
Controls whether ChooseFromList
can select multiple items.
-
Only one item may be chosen from the list.
Declaration
Swift
case single
-
Multiple items may be chosen from the list.
Declaration
Swift
case multiple(selectAllInitially: Bool)
Parameters
selectAllInitially
When enabled, all of the items in the list will start out selected when
ChooseFromList
is presented.