Class SelectedDatesChangedEventArgs
Provides data for the SelectedDatesChanged event.
Inheritance
System.Object
SelectedDatesChangedEventArgs
Namespace: Syncfusion.UI.Xaml.Calendar
Assembly: Syncfusion.Calendar.WinUI.dll
Syntax
public class SelectedDatesChangedEventArgs : EventArgs
Properties
AddedDates
Gets a collection that contains the items that were selected.
Declaration
public IReadOnlyList<DateTimeOffset> AddedDates { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<System.DateTimeOffset> | The items that were selected since the last time the SelectedDatesChanged event occurred. |
RemovedDates
Gets a collection that contains the items that were unselected.
Declaration
public IReadOnlyList<DateTimeOffset> RemovedDates { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<System.DateTimeOffset> | The items that were unselected since the last time the SelectedDatesChanged event occurred. |