Class DragEventArgs<T>
A class that holds options to control drag action on appointments.
Inheritance
System.Object
DragEventArgs<T>
Namespace: Syncfusion.Blazor.Schedule
Assembly: Syncfusion.Blazor.dll
Syntax
public class DragEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T |
Constructors
DragEventArgs()
Declaration
public DragEventArgs()
Properties
Cancel
Defines the cancel option.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Data
Returns the dragged event data.
Declaration
public T Data { get; set; }
Property Value
Type | Description |
---|---|
T |
EndTime
Returns the end time of the clone element.
Declaration
public DateTime EndTime { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
ExcludeSelectors
Defines the selectors to cancel the drop on selector target.
Declaration
public string ExcludeSelectors { get; set; }
Property Value
Type | Description |
---|---|
System.String |
GroupIndex
Returns the group index of the clone element.
Declaration
public int GroupIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Interval
Allows to define the interval in minutes for dragging the appointments.
Declaration
public int Interval { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Navigation
Defines the date range navigation action while dragging.
Declaration
public NavigateOptions Navigation { get; set; }
Property Value
Type | Description |
---|---|
NavigateOptions |
Scroll
Allows to define the scroll related actions while dragging to the edges of scheduler.
Declaration
public ScrollOptions Scroll { get; set; }
Property Value
Type | Description |
---|---|
ScrollOptions |
StartTime
Returns the start time of the clone element.
Declaration
public DateTime StartTime { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |