ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / MapView Class / RemoveOverlayControl Method
The control to remove.
Example

In This Topic
    RemoveOverlayControl Method
    In This Topic
    Remove a control from over the view.
    Syntax
    public bool RemoveOverlayControl( 
       IMapViewOverlayControl overlayControl
    )
    Public Function RemoveOverlayControl( _
       ByVal overlayControl As IMapViewOverlayControl _
    ) As Boolean

    Parameters

    overlayControl
    The control to remove.

    Return Value

    True if the control was removed, false if the control was not found.
    Example
    MapView Overlay Control
    //Creat a Progress Bar user control
    var progressBarControl = new System.Windows.Controls.ProgressBar();
    //Configure the progress bar
    progressBarControl.Minimum = 0;
    progressBarControl.Maximum = 100;
    progressBarControl.IsIndeterminate = true;
    progressBarControl.Width = 300;
    progressBarControl.Value = 10;
    progressBarControl.Height = 25;
    progressBarControl.Visibility = System.Windows.Visibility.Visible;
    //Create a MapViewOverlayControl. 
    var mapViewOverlayControl = new MapViewOverlayControl(progressBarControl, true, true, true, OverlayControlRelativePosition.BottomCenter, .5, .8);
    //Add to the active map
    MapView.Active.AddOverlayControl(mapViewOverlayControl);
    await QueuedTask.Run(() =>
    {
      //Wait 3 seconds to remove the progress bar from the map.
      Thread.Sleep(3000);
    
    });
    //Remove from active map
    MapView.Active.RemoveOverlayControl(mapViewOverlayControl);
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also