DragStartingEventArgs.Cancel Property
Definition
Gets or sets a value that indicates whether the drag action should be canceled.
Equivalent WinUI property: Microsoft.UI.Xaml.DragStartingEventArgs.Cancel.
public:
property bool Cancel { bool get(); void set(bool value); };
bool Cancel();
void Cancel(bool value);
public bool Cancel { get; set; }
var boolean = dragStartingEventArgs.cancel;
dragStartingEventArgs.cancel = boolean;
Public Property Cancel As Boolean
Property Value
true to cancel the drag action; otherwise, false. The default is false.
Remarks
Set this property to true in a handler in order to cancel a drag action.