TreeViewDragItemsStartingEventArgs.Cancel Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that indicates whether the item drag action should be canceled.
Equivalent WinUI 2 API for UWP: Microsoft.UI.Xaml.Controls.TreeViewDragItemsStartingEventArgs.Cancel (for WinUI in the Windows App SDK, see the Windows App SDK namespaces).
public:
property bool Cancel { bool get(); void set(bool value); };
bool Cancel();
void Cancel(bool value);
public bool Cancel { get; set; }
var boolean = treeViewDragItemsStartingEventArgs.cancel;
treeViewDragItemsStartingEventArgs.cancel = boolean;
Public Property Cancel As Boolean
Property Value
bool
true to cancel the item drag action; otherwise, false.
Remarks
Set this property to true in a handler in order to cancel an items drag action.