ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / TableView Class / GoTo Method
Example

In This Topic
    GoTo Method (TableView)
    In This Topic
    Shows the Go to row number control.
    Syntax
    public void GoTo()
    Public Sub GoTo() 
    Example
    GoTo
    var tv = TableView.Active;
    if (tv == null)
      return;
    
    // launch the GoTo UI
    if (tv.CanGoTo)
      tv.GoTo();
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.1 or higher.
    See Also