Class DateTimeValueChangedEventArgs
Provides data for the DateTimeValueChangedEventArgs event of the SfDateTimeEdit control.
Inheritance
System.Object
DateTimeValueChangedEventArgs
Namespace: Syncfusion.WinForms.Input.Events
Assembly: Syncfusion.SfInput.WinForms.dll
Syntax
public class DateTimeValueChangedEventArgs : EventArgs
Constructors
DateTimeValueChangedEventArgs(Nullable<DateTime>, Nullable<DateTime>)
Initializes a new instance of the DateTimeValueChangedEventArgs class.
Declaration
public DateTimeValueChangedEventArgs(Nullable<DateTime> oldValue, Nullable<DateTime> newValue)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Nullable<System.DateTime> | oldValue | new value of DateTime |
| System.Nullable<System.DateTime> | newValue | old value of DateTime |
Properties
NewValue
Gets new value of SfDateTimeEdit.
Declaration
public Nullable<DateTime> NewValue { get; }
Property Value
| Type |
|---|
| System.Nullable<System.DateTime> |
OldValue
Gets old value of SfDateTimeEdit.
Declaration
public Nullable<DateTime> OldValue { get; }
Property Value
| Type |
|---|
| System.Nullable<System.DateTime> |