SegmentedButtonSelectedItems Property |
Gets or sets the selected items.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public IEnumerable<SegmentedItem> SelectedItems { get; set; }
Public Property SelectedItems As IEnumerable(Of SegmentedItem)
Get
Set
member SelectedItems : IEnumerable<SegmentedItem> with get, set
Property Value
Type:
IEnumerableSegmentedItemThe selected items.
Remarks
You can only set selected item based on the current value of
SelectionMode.
For
Multiple, any combination of items can be selected.
For
Single, only a single item will be selected. Setting multiple items in this mode
will only result in a single item being selected.
For
None, no items can be selected.
See Also