ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / TableViewMode Enumeration
Example Example

In This Topic
    TableViewMode Enumeration
    In This Topic
    Table pane view mode.
    Syntax
    Members
    MemberDescription
    eAllRecords Show all records.
    eSelectedRecords Show just selected records.
    Example
    Set Table ViewingMode
    //Get the active table view.
    var tableView = TableView.Active;
    if (tableView == null)
      return;
    
    // change to "selected record" mode
    tableView.SetViewMode(TableViewMode.eSelectedRecords);
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             ArcGIS.Desktop.Mapping.TableViewMode

    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also