ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Framework.Contracts Namespace / DockPane Class / Pin Method
Example

In This Topic
    Pin Method
    In This Topic
    Pins the DockPane
    Syntax
    Public Sub Pin() 
    public void Pin()
    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