Class RangeEventArgs
Defines the argument for the Range event.
Inheritance
System.Object
RangeEventArgs
Implements
System.IEquatable<RangeEventArgs>
Namespace: Syncfusion.Blazor.Calendars
Assembly: Syncfusion.Blazor.dll
Syntax
public class RangeEventArgs : Object, IEquatable<RangeEventArgs>
Constructors
RangeEventArgs()
Declaration
public RangeEventArgs()
Properties
DaySpan
Defines the day span between the range
Declaration
public double DaySpan { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Element
Specifies the element.
Declaration
public object Element { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
EndDate
Defines the end date
Declaration
public DateTime EndDate { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
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 |
StartDate
Defines the start date
Declaration
public DateTime StartDate { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
Text
Defines the value string in the input element
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Value
Defines the value
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Methods
Equals(RangeEventArgs)
Declaration
public bool Equals(RangeEventArgs rangeEventArgs)
Parameters
Type | Name | Description |
---|---|---|
RangeEventArgs | rangeEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>