Interface ISelector
An interface that is implemented by classes which are responsible for selecting items among their child elements.
Namespace: Telerik.Windows.Controls.Primitives
Assembly: Telerik.Windows.Controls.dll
Syntax
public interface ISelector
Properties
SelectedIndex
Gets the index of the selected item. Returns -1 if the selection is empty.
Declaration
int SelectedIndex { get; }
Property Value
System.Int32
|
SelectedItem
Gets the item which is currently selected.
Declaration
object SelectedItem { get; }
Property Value
System.Object
|
SelectedValue
Gets the value for the selected item.
Declaration
object SelectedValue { get; }
Property Value
System.Object
|
Methods
add_SelectionChanged(SelectionChangedEventHandler)
Declaration
void add_SelectionChanged(SelectionChangedEventHandler value)
Parameters
SelectionChangedEventHandler
value
|
remove_SelectionChanged(SelectionChangedEventHandler)
Declaration
void remove_SelectionChanged(SelectionChangedEventHandler value)
Parameters
SelectionChangedEventHandler
value
|
Events
SelectionChanged
Occurs when the selection of a Telerik.Windows.Controls.Primitives.ISelector object changes.
Declaration
event SelectionChangedEventHandler SelectionChanged
Event Type
SelectionChangedEventHandler
|