Class KanbanDragStartEventArgs
Provides the card information for the DragStart event.
Inherited Members
Namespace: Syncfusion.SfKanban.XForms
Assembly: Syncfusion.SfKanban.XForms.dll
Syntax
public class KanbanDragStartEventArgs : KanbanDragEventArgs
Constructors
KanbanDragStartEventArgs()
Initializes a new instance of the KanbanDragStartEventArgs class.
Declaration
public KanbanDragStartEventArgs()
KanbanDragStartEventArgs(KanbanColumn, Object, Int32, Boolean, Boolean)
Initializes a new instance of the KanbanDragStartEventArgs class.
Declaration
public KanbanDragStartEventArgs(KanbanColumn sourceColumn, object data, int sourceIndex, bool cancel, bool keepItem)
Parameters
Type | Name | Description |
---|---|---|
KanbanColumn | sourceColumn | sourceColumn. |
System.Object | data | data. |
System.Int32 | sourceIndex | sourceIndex. |
System.Boolean | cancel | cancel. |
System.Boolean | keepItem | keepItem. |
Properties
Cancel
Gets or sets a value indicating whether to continue the drag event.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The cancel. |
KeepItem
Gets or sets a value indicating whether to keep the orginal card in the source column. The card will be removed from the source column only after the drag ended on other column.
Declaration
public bool KeepItem { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The keep item. |