Class ScrollEventArgs<T>
Provides information about the virtual scroll action of the scheduler.
Inheritance
Namespace: Syncfusion.Blazor.Schedule
Assembly: Syncfusion.Blazor.dll
Syntax
public class ScrollEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T | The type of the value of schedule events. |
Constructors
ScrollEventArgs()
Declaration
public ScrollEventArgs()
Properties
EndDate
Gets the end date from the active view of the scheduler.
Declaration
public DateTime EndDate { get; }
Property Value
Type | Description |
---|---|
System.DateTime | Gets a value of System.DateTime type. |
EndIndex
Gets the group index of the last resource which is currently being rendered.
Declaration
public int EndIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | Gets a value of System.Int32 type. |
EventData
Gets or sets the event data collection that needs to be rendered on every virtual scroll action This data dynamically bound to the scheduler only when EnableLazyLoading property is enabled.
Declaration
public IEnumerable<T> EventData { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T> | If we set the event data collection then the data is currently bound to the scheduler. Accepts a value of System.Collections.Generic.IEnumerable<> type. |
ResourceData
Gets the resource data collection which is currently rendered.
Declaration
public IEnumerable<object> ResourceData { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<System.Object> | Gets a resource DataSource collection which is currently rendered in viewport. |
StartDate
Gets the start date from the active view of scheduler.
Declaration
public DateTime StartDate { get; }
Property Value
Type | Description |
---|---|
System.DateTime | Gets a value of System.DateTime type. |
StartIndex
Gets the group index of the first resource which is currently being rendered.
Declaration
public int StartIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | Gets a value of System.Int32 type. |