Class ChangedEventArgs<T>
Provides information about an ValueChange event being raised.
Inheritance
System.Object
ChangedEventArgs<T>
Namespace: Syncfusion.Blazor.Calendars
Assembly: Syncfusion.Blazor.dll
Syntax
public class ChangedEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T | . |
Constructors
ChangedEventArgs()
Declaration
public ChangedEventArgs()
Properties
Element
Gets the element.
Declaration
public object Element { get; set; }
Property Value
Type | Description |
---|---|
System.Object | An object that represents the element. |
Event
Gets the original event arguments.
Declaration
public object Event { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The original event arguments for the current event. |
IsInteracted
Gets a value indicating whether the event was triggered by user interaction.
Declaration
public bool IsInteracted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Name
Specifies name of the event.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Value
Gets the selected date of the Calendar.
Declaration
public T Value { get; set; }
Property Value
Type |
---|
T |
Values
Gets the multiple selected date of the Calendar.
Declaration
public DateTime[] Values { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime[] | An array of date time values. |