Class SelectionEventArgs
Arguments class used when the SelectionChanging event is fired.
Inheritance
System.Object
SelectionEventArgs
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public sealed class SelectionEventArgs : CancelEventArgs
Constructors
SelectionEventArgs(DateTimeCollection)
SelectionEventArgs(DateTimeCollection, List<DateTime>)
Declaration
public SelectionEventArgs(DateTimeCollection dates, List<DateTime> newDates)
Parameters
DateTimeCollection
dates
|
System.Collections.Generic.List<System.DateTime>
newDates
|
Properties
Dates
Gets a refference to the SelectedDates collection, represented by the Telerik RadCalendar component that rise the SelectionChanging event.
Declaration
public DateTimeCollection Dates { get; }
Property Value
DateTimeCollection
|
NewDates
Gets a refference to the Dates which will be selected
Declaration
public List<DateTime> NewDates { get; }
Property Value
System.Collections.Generic.List<System.DateTime>
|