Interface IRangeSelector<T>
An interface to be used by range selecting controls.
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.dll
Syntax
public interface IRangeSelector<T>
Type Parameters
T
Simple type used for Selection properties. |
Properties
Selection
Gets or sets the Selection property.
Declaration
SelectionRange<T> Selection { get; set; }
Property Value
SelectionRange<T>
|
SelectionEnd
Gets or sets the SelectionEnd property.
Declaration
T SelectionEnd { get; set; }
Property Value
T
|
SelectionStart
Gets or sets the SelectionStart property.
Declaration
T SelectionStart { get; set; }
Property Value
T
|
Methods
add_SelectionChanged(RadRoutedEventHandler)
Declaration
void add_SelectionChanged(RadRoutedEventHandler value)
Parameters
RadRoutedEventHandler
value
|
remove_SelectionChanged(RadRoutedEventHandler)
Declaration
void remove_SelectionChanged(RadRoutedEventHandler value)
Parameters
RadRoutedEventHandler
value
|
Events
SelectionChanged
Identifies the SelectionChanged routed event.
Declaration
event RadRoutedEventHandler SelectionChanged
Event Type
RadRoutedEventHandler
|