ArcGIS Pro 3.3 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / TableView Class / CanDeleteSelected Property
Example

In This Topic
    CanDeleteSelected Property (TableView)
    In This Topic
    Determines if the table view can delete the selected rows.
    Syntax
    public bool CanDeleteSelected {get;}
    Public ReadOnly Property CanDeleteSelected As Boolean
    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