Class SelectionChangedEventArgs
Provides data for the SelectionChanged event of the SfCalendar control.
Inheritance
System.Object
SelectionChangedEventArgs
Namespace: Syncfusion.WinForms.Input.Events
Assembly: Syncfusion.SfInput.WinForms.dll
Syntax
public class SelectionChangedEventArgs : EventArgs
Constructors
SelectionChangedEventArgs(Nullable<DateTime>, Nullable<DateTime>, Boolean)
Initializes a new instance of the SelectionChangedEventArgs class.
Declaration
public SelectionChangedEventArgs(Nullable<DateTime> oldValue, Nullable<DateTime> newValue, bool isMultipleSelection)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Nullable<System.DateTime> | oldValue | Old selected date. |
| System.Nullable<System.DateTime> | newValue | New selected date. |
| System.Boolean | isMultipleSelection | AllowMultipleSelection value. |
Properties
IsMultipleDatesSelected
Gets a value indicating whether AllowMultipleSelection for SfCalendar.
Declaration
public bool IsMultipleDatesSelected { get; }
Property Value
| Type |
|---|
| System.Boolean |
NewValue
Gets the new SelectedDate for SfCalendar.
Declaration
public Nullable<DateTime> NewValue { get; }
Property Value
| Type |
|---|
| System.Nullable<System.DateTime> |
OldValue
Gets the old SelectedDate of SfCalendar.
Declaration
public Nullable<DateTime> OldValue { get; }
Property Value
| Type |
|---|
| System.Nullable<System.DateTime> |