Class KanbanDragOverEventArgs
Provides the card information for the DragOver event.
Inherited Members
Namespace: Syncfusion.SfKanban.XForms
Assembly: Syncfusion.SfKanban.XForms.dll
Syntax
public class KanbanDragOverEventArgs : KanbanDragEventArgs
Constructors
KanbanDragOverEventArgs()
Initializes a new instance of the KanbanDragOverEventArgs class.
Declaration
public KanbanDragOverEventArgs()
KanbanDragOverEventArgs(KanbanColumn, Object, Int32, KanbanColumn, Int32, Boolean)
Initializes a new instance of the KanbanDragOverEventArgs class.
Declaration
public KanbanDragOverEventArgs(KanbanColumn sourceColumn, object data, int sourceIndex, KanbanColumn targetColumn, int targetIndex, bool cancel)
Parameters
Type | Name | Description |
---|---|---|
KanbanColumn | sourceColumn | sourceColumn. |
System.Object | data | data. |
System.Int32 | sourceIndex | sourceIndex. |
KanbanColumn | targetColumn | targetColumn. |
System.Int32 | targetIndex | targetIndex. |
System.Boolean | cancel | cancel. |
Properties
Cancel
Gets or sets a value indicating whether to show the item placeholder for the current target index.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The cancel. |
TargetColumn
Gets the target column upon which the card is being dragged.
Declaration
public KanbanColumn TargetColumn { get; }
Property Value
Type | Description |
---|---|
KanbanColumn | The target column. |
TargetIndex
Gets the target index of the card.
Declaration
public int TargetIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The index of the target. |