ThemedSegmentedButtonHandlerSelectedIndexes Property |
Gets or sets the selected indexes.
Namespace:
Eto.Forms.ThemedControls
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntaxpublic IEnumerable<int> SelectedIndexes { get; set; }
Public Property SelectedIndexes As IEnumerable(Of Integer)
Get
Set
abstract SelectedIndexes : IEnumerable<int> with get, set
override SelectedIndexes : IEnumerable<int> with get, set
Property Value
Type:
IEnumerableInt32The selected indexes.
Implements
SegmentedButtonIHandlerSelectedIndexes
Remarks
You can only set selected indexes based on the current value of
SelectionMode.
For
Multiple, any combination of indexes can be selected.
For
Single, only a single index will be selected. Setting multiple indexes in this mode
will only result in a single index being selected.
For
None, no indexes can be selected.
See Also