ArcGIS Pro 2.6 API Reference Guide
NextCameraAsync Method
Example 

ArcGIS.Desktop.Mapping Namespace > MapView Class : NextCameraAsync Method
The amount of time to navigate the view to the new camera position. If null it uses the default navigation duration.
Go to the next camera position.
Syntax
public Task<bool> NextCameraAsync( 
   Nullable<TimeSpan> duration
)
Public Function NextCameraAsync( _
   Optional ByVal duration As Nullable(Of TimeSpan) _
) As Task(Of Boolean)

Parameters

duration
The amount of time to navigate the view to the new camera position. If null it uses the default navigation duration.

Return Value

True if the navigation is completed, false if it was interrupted by another view navigation.
Remarks
This method can be called multiple times in a loop to go through multiple camera positions. Use together with the HasNextCamera to test if there is a next camera available.
Example
Zoom to the previous camera position.
public Task<bool> ZoomToNextCameraAsync()
{
  //Get the active map view.
  var mapView = MapView.Active;
  if (mapView == null)
    return Task.FromResult(false);

  //Zoom to the selected layers in the TOC
  if (mapView.HasNextCamera())
    return mapView.NextCameraAsync();

  return Task.FromResult(false);
}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 7

See Also

Reference

MapView Class
MapView Members