Class KanbanCardDropEventArgs
Provides data for the drop event of a Kanban card in the SfKanban control.
Inheritance
Namespace: Syncfusion.UI.Xaml.Kanban
Assembly: Syncfusion.Kanban.WinUI.dll
Syntax
public class KanbanCardDropEventArgs : CancelEventArgs
Constructors
KanbanCardDropEventArgs()
Declaration
public KanbanCardDropEventArgs()
Properties
PreviousCardIndex
Gets the integer value that indicates the previous card index while dragging into the next column.
Declaration
public int PreviousCardIndex { get; }
Property Value
Type |
---|
System.Int32 |
PreviousColumnIndex
Gets the integer value indicating the previous card's column index while drag enters next column.
Declaration
public int PreviousColumnIndex { get; }
Property Value
Type |
---|
System.Int32 |
PreviousRowIndex
Gets the integer value indicating the previous card's swimlane index while drag enters next swimlane.
Declaration
public int PreviousRowIndex { get; }
Property Value
Type |
---|
System.Int32 |
Remarks
The PreviousRowIndex is applicable only for the swimlane column.
SourceColumn
Gets the target column out of which the user drags the card.
Declaration
public KanbanColumn SourceColumn { get; }
Property Value
Type |
---|
KanbanColumn |
TargetCardIndex
Gets the index in the target column where the card is going to be inserted.
Declaration
public int TargetCardIndex { get; }
Property Value
Type |
---|
System.Int32 |
TargetColumn
Gets the target column upon which the card is dropped.
Declaration
public KanbanColumn TargetColumn { get; }
Property Value
Type |
---|
KanbanColumn |
TargetColumnIndex
Gets the target column index where the card is going to be inserted.
Declaration
public int TargetColumnIndex { get; }
Property Value
Type |
---|
System.Int32 |
TargetRowIndex
Gets the integer value indicating the target row index of the swimlane where the card is going to be inserted.
Declaration
public int TargetRowIndex { get; }
Property Value
Type |
---|
System.Int32 |
Remarks
The TargetRowIndex is applicable only for the swimlane column.
TargetSwimlane
Gets the target swimlane on which the card is dropped.
Declaration
public object TargetSwimlane { get; }
Property Value
Type |
---|
System.Object |