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

In This Topic
    CanSelectAll Property (TableView)
    In This Topic
    Determines if the table view can select all of its rows.
    Syntax
    public bool CanSelectAll {get;}
    Public ReadOnly Property CanSelectAll As Boolean
    Example
    Select all rows
    var tv = TableView.Active;
    if (tv == null)
      return;
    
    if (tv.CanSelectAll)
      tv.SelectAll();
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.1 or higher.
    See Also