ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Framework.Contracts Namespace / DockPane Class / Activate Method / Activate(Boolean) Method
Whether or not the dockpane should receive focus.
Example

In This Topic
    Activate(Boolean) Method
    In This Topic
    Activates the DockPane.
    Syntax
    Public Overloads Sub Activate( _
       ByVal focus As Boolean _
    ) 
    public void Activate( 
       bool focus
    )

    Parameters

    focus
    Whether or not the dockpane should receive focus.
    Example
    Dockpane operations
    {
      // in order to find a dockpane you need to know its DAML id
      pane = FrameworkApplication.DockPaneManager.Find(dockPaneID);
    
      // determine visibility
      bool visible = pane.IsVisible;
    
      // activate it
      pane.Activate();
    
      // determine dockpane state
      DockPaneState state = pane.DockState;
    
      // pin it
      pane.Pin();
    
      // hide it
      pane.Hide();
    }
    Requirements

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

    ArcGIS Pro version: 3.0 or higher.
    See Also