ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / MapView Class / LinkMode Property
Example

In This Topic
    LinkMode Property
    In This Topic
    Gets or sets the method used to link views.
    Syntax
    Public Shared Property LinkMode As LinkMode
    public static LinkMode LinkMode {get; set;}
    Exceptions
    ExceptionDescription
    Scale can only be set in combination with Center.
    Remarks
    View linking is a navigation experience and can be used for multiple maps, scenes, or a mix of these 2D and 3D views. When you enable view linking all views will update their extents to match depending on the link mode that is selected. Currently the link mode Scale can only be used in combination with Center. Center can be used on its own or in combination with Scale.
    Example
    Enable View Linking
    {
      //Set the view linking mode to Center and Scale.
      MapView.LinkMode = LinkMode.Center | LinkMode.Scale;
    }
    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also