Class KanbanDragEventArgs
Serves as a base class for all SfKanban drag event arguments.
Inheritance
System.Object
KanbanDragEventArgs
Namespace: Syncfusion.SfKanban.XForms
Assembly: Syncfusion.SfKanban.XForms.dll
Syntax
public abstract class KanbanDragEventArgs : EventArgs
Constructors
KanbanDragEventArgs()
Initializes a new instance of the KanbanDragEventArgs class.
Declaration
public KanbanDragEventArgs()
KanbanDragEventArgs(KanbanColumn, Object, Int32)
Initializes a new instance of the KanbanDragEventArgs class.
Declaration
public KanbanDragEventArgs(KanbanColumn sourceColumn, object data, int sourceIndex)
Parameters
Type | Name | Description |
---|---|---|
KanbanColumn | sourceColumn | sourceColumn. |
System.Object | data | data. |
System.Int32 | sourceIndex | sourceIndex. |
Properties
Data
Gets the model data of the captured card.
Declaration
public object Data { get; }
Property Value
Type |
---|
System.Object |
SourceColumn
Gets the column, where the drag event occurs.
Declaration
public KanbanColumn SourceColumn { get; }
Property Value
Type | Description |
---|---|
KanbanColumn |
SourceIndex
Gets the index of the captured card.
Declaration
public int SourceIndex { get; }
Property Value
Type |
---|
System.Int32 |