Class KanbanCardDragStartingEventArgs
Provides data for the drag-start event of a Kanban card in the SfKanban control.
Inheritance
System.Object
KanbanCardDragStartingEventArgs
Namespace: Syncfusion.UI.Xaml.Kanban
Assembly: Syncfusion.Kanban.WinUI.dll
Syntax
public class KanbanCardDragStartingEventArgs : CancelEventArgs
Constructors
KanbanCardDragStartingEventArgs()
Declaration
public KanbanCardDragStartingEventArgs()
Properties
Card
Gets a dragging card in the kanban.
Declaration
public KanbanCardItem Card { get; }
Property Value
Type |
---|
KanbanCardItem |
Column
Gets the source column from which the card is being dragged.
Declaration
public KanbanColumn Column { get; }
Property Value
Type |
---|
KanbanColumn |
KeepCard
Gets or sets a value indicating whether the original card should remain in the source column during a drag operation.
Declaration
public bool KeepCard { get; set; }
Property Value
Type |
---|
System.Boolean |
Remarks
When set to true
, the card remains in its original column even after being dragged and dropped into a different column.
This allows repeated drag-and-drop actions on the same card without moving it from the source column.