ArcGIS Pro 3.7 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
    Function BringIntoView( _
       ByVal rowIndex As Integer _
    ) As Task
    Task BringIntoView( 
       int rowIndex
    )

    Parameters

    rowIndex
    Row index to scroll to.

    Return Value

    A Task of the operation.
    Example
    Move to a particular row
    {
        // Check if the active pane is an ITablePane  
        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 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also