Provides data for RadCalendar SelectionChanged event.
Definition
Namespace:Telerik.Maui.Controls.Calendar
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public class CalendarSelectionChangedEventArgs : EventArgs
Inheritance: objectEventArgsCalendarSelectionChangedEventArgs
Inherited Members
Constructors
Initializes a new instance of the CalendarSelectionChangedEventArgs class.
C#
public CalendarSelectionChangedEventArgs(IEnumerable<DateTime> removedDates, IEnumerable<DateTime> addedDates)
The removed dates.
addedDatesIEnumerable<DateTime>The added dates.
Properties
Gets an IEnumerable that contains the dates that were selected.
C#
public IEnumerable<DateTime> AddedDates { get; }
Gets an IEnumerable that contains the dates that were deselected.
C#
public IEnumerable<DateTime> RemovedDates { get; }