New to Telerik UI for .NET MAUIStart a free 30-day trial

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 EventArgs.Empty

Constructors

Initializes a new instance of the CalendarSelectionChangedEventArgs class.

C#
public CalendarSelectionChangedEventArgs(IEnumerable<DateTime> removedDates, IEnumerable<DateTime> addedDates)
Parameters:removedDatesIEnumerable<DateTime>

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; }