CanZoomToHighlighted Property (TableView)
Determines if the table can zoom to the highlighted rows. The table view must be showing the Selected Records view.
Zoom or Pan To Highlighted Rows
var tv = TableView.Active;
if (tv == null)
return;
if (tv.CanZoomToHighlighted)
tv.ZoomToHighlighted();
if (tv.CanPanToHighlighted)
tv.PanToHighlighted();
Target Platforms: Windows 11, Windows 10
ArcGIS Pro version: 3.1 or higher.