Class ElementInfo<T>
Provides the information about the target element.
Inheritance
System.Object
ElementInfo<T>
Namespace: Syncfusion.Blazor.Schedule
Assembly: Syncfusion.Blazor.dll
Syntax
public class ElementInfo<T> : Object
Type Parameters
Name |
---|
T |
Constructors
ElementInfo()
Declaration
public ElementInfo()
Properties
ElementType
Gets the element type of the target.
Declaration
public ElementType ElementType { get; }
Property Value
Type |
---|
ElementType |
EndTime
Gets the end time of the work/time cells.
Declaration
public DateTime EndTime { get; }
Property Value
Type |
---|
System.DateTime |
EventData
Gets the event details of the target event. If the target is not a event element, it should be null.
Declaration
public T EventData { get; set; }
Property Value
Type |
---|
T |
IsAllDay
Returns true or false, based on whether the clicked cell is all-day or not.
Declaration
public bool IsAllDay { get; }
Property Value
Type |
---|
System.Boolean |
ResourceData
Gets the resource details when the target element is either work cells or resource cell.
Declaration
public List<object> ResourceData { get; }
Property Value
Type |
---|
System.Collections.Generic.List<System.Object> |
StartTime
Gets the start time of the work/time cells.
Declaration
public DateTime StartTime { get; }
Property Value
Type |
---|
System.DateTime |