//Get the active table view.
var tableView = TableView.Active;
if (tableView == null)
return;
// get the active rowindex
int rowIndex = tableView.ActiveRowIndex;
// move to a different row
var newIndex = 10 + rowIndex;
await tableView.BringIntoView(newIndex);