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

BringIntoView Method (ITablePane)
Scroll the table grid to the desired row and keep the current field.
Syntax
Task BringIntoView( 
   int rowIndex
)

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