ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / ITablePane Interface / BringIntoView Method
Row index to scroll to.
Example

In This Topic
    BringIntoView Method (ITablePane)
    In This Topic
    Scroll the table grid to the desired row and keep the current field.
    Syntax
    Task BringIntoView( 
       int rowIndex
    )
    Function BringIntoView( _
       ByVal rowIndex As Integer _
    ) As Task

    Parameters

    rowIndex
    Row index to scroll to.

    Return Value

    A Task of the operation.
    Example
    Move to a particular row
      if (FrameworkApplication.Panes.ActivePane is ITablePane tablePane)
      {
        // move to first row
        tablePane.BringIntoView(0);
    
        // move to sixth row
        tablePane.BringIntoView(5);
      }
    }
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also