Parameters
- rowIndex
- Row index to scroll to.
Return Value
A Task of the operation.
{
// 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);
}
}
Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)