Class CalendarSelectionChangedEventArgs
Provides data for RadCalendar SelectionChanged event.
Inheritance
System.Object
CalendarSelectionChangedEventArgs
Namespace: Telerik.Maui.Controls.Calendar
Assembly: Telerik.Maui.Controls.dll
Syntax
public class CalendarSelectionChangedEventArgs : EventArgs
Constructors
CalendarSelectionChangedEventArgs(IEnumerable<DateTime>, IEnumerable<DateTime>)
Initializes a new instance of the CalendarSelectionChangedEventArgs class.
Declaration
public CalendarSelectionChangedEventArgs(IEnumerable<DateTime> removedDates, IEnumerable<DateTime> addedDates)
Parameters
System.Collections.Generic.IEnumerable<System.DateTime>
removedDates
The removed dates. |
System.Collections.Generic.IEnumerable<System.DateTime>
addedDates
The added dates. |
Properties
AddedDates
Gets an IEnumerable that contains the dates that were selected.
Declaration
public IEnumerable<DateTime> AddedDates { get; }
Property Value
System.Collections.Generic.IEnumerable<System.DateTime>
|
RemovedDates
Gets an IEnumerable that contains the dates that were deselected.
Declaration
public IEnumerable<DateTime> RemovedDates { get; }
Property Value
System.Collections.Generic.IEnumerable<System.DateTime>
|