ArcGIS Pro 2.6 API Reference Guide
DeleteAsync Method (PaneBase)

ArcGIS.Desktop.Framework.Contracts Namespace > PaneBase Class : DeleteAsync Method
Called when the Delete command is executed.
Syntax
protected internal virtual Task DeleteAsync()
Protected Friend Overridable Function DeleteAsync() As Task

Return Value

A Task so the main user interface thread is not blocked while processing this request.
Remarks
To facilitate clipboard operations, the framework has created four commands (Copy, Paste, PasteSpecial, and Cut) that are registered to appear in the Clipboard group in several ribbon tabs. These commands, like most, are polled constantly for their enabled state. The unique feature about these commands is that they defer their logic to active window (Pane or DockPane) first and if this object returns false, they then consult each currently loaded module (until one returns true). For example, when a feature is selected in a map, the map pane may return false for CanCopyAsync but the Editing module, which has no pane of its own, may return true. The object that returns true for any of the ‘Can’ functions is the object that is called if the user clicks on the command.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 7

See Also

Reference

PaneBase Class
PaneBase Members
CanDeleteAsync Method