Class KanbanDragEnterEventArgs
This class provides card information for the DragEnter event.
Inherited Members
Namespace: Syncfusion.Maui.Kanban
Assembly: Syncfusion.Maui.Kanban.dll
Syntax
public class KanbanDragEnterEventArgs : KanbanDragEventArgs
Constructors
KanbanDragEnterEventArgs()
Initializes a new instance of the KanbanDragEnterEventArgs class.
Declaration
public KanbanDragEnterEventArgs()
Properties
Cancel
Gets or sets a value indicating whether the drag operation should be canceled.
Declaration
public bool Cancel { get; set; }
Property Value
Type |
---|
System.Boolean |
IsAboveMaximumLimit
Gets a value that indicates whether the number of cards in the column exceeds the maximum allowed limit.
Declaration
public bool IsAboveMaximumLimit { get; }
Property Value
Type |
---|
System.Boolean |
TargetColumn
Gets the target column onto which the card is dropped.
Declaration
public KanbanColumn TargetColumn { get; }
Property Value
Type |
---|
KanbanColumn |
TargetIndex
Gets the index in the target column where the card is going to be inserted.
Declaration
public int TargetIndex { get; }
Property Value
Type |
---|
System.Int32 |