ArcGIS Pro 3.3 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / TableView Class / DeleteSelected Method
Example Version

    DeleteSelected Method (TableView)
    Deletes the selected rows in the table view.
    Syntax
    public void DeleteSelected()
    Example
    Delete Selected Rows
    var tv = TableView.Active;
    if (tv == null)
      return;
    
    if (tv.CanDeleteSelected)
      tv.DeleteSelected(); 
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.1 or higher.
    See Also