Class DragEventArgs<TValue>
Provides information about the Drag, Drag Start/End event.
Inheritance
Namespace: Syncfusion.Blazor.Kanban
Assembly: Syncfusion.Blazor.dll
Syntax
public class DragEventArgs<TValue> : Object
Type Parameters
Name | Description |
---|---|
TValue | Represents the kanban data source's type. |
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 List<TValue> Data { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<TValue> | A list of values representing the dragged event data. |
DragIndex
Specifies index of the dropped element.
Declaration
public int DragIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts an integer value. |
IsExternal
Specifies external drop.
Declaration
public bool IsExternal { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Left
Returns the Client X value of target element.
Declaration
public double Left { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts a double value that representing the client X value of the target element. |
PreviousCardData
Returns the previous card data.
Declaration
public List<TValue> PreviousCardData { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<TValue> | A list of type TValue containing the data of the previous card. |
Top
Returns the Client Y value of target element.
Declaration
public double Top { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts a double value that representing the client Y value of the target element. |