Class ChangedEventArgs<T>
Defines the argument for the Change event.
Inheritance
System.Object
ChangedEventArgs<T>
Implements
System.IEquatable<ChangedEventArgs<T>>
Namespace: Syncfusion.Blazor.Calendars
Assembly: Syncfusion.Blazor.dll
Syntax
public class ChangedEventArgs<T> : Object, IEquatable<ChangedEventArgs<T>>
Type Parameters
Name | Description |
---|---|
T |
Constructors
ChangedEventArgs()
Declaration
public ChangedEventArgs()
Properties
Element
Defines the element.
Declaration
public object Element { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Event
Specifies the original event arguments.
Declaration
public object Event { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
IsInteracted
If the event is triggered by interaction, it returns true. Otherwise, it returns false.
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 |
Value
Defines the selected date of the Calendar.
Declaration
public T Value { get; set; }
Property Value
Type | Description |
---|---|
T |
Values
Defines the multiple selected date of the Calendar.
Declaration
public DateTime[] Values { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime[] |
Methods
Equals(ChangedEventArgs<T>)
Declaration
public bool Equals(ChangedEventArgs<T> changedEventArgs)
Parameters
Type | Name | Description |
---|---|---|
ChangedEventArgs<T> | changedEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>