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