ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Framework Namespace / IPlugInWrapper Interface / Caption Property
Example

In This Topic
    Caption Property (IPlugInWrapper)
    In This Topic
    Gets or sets the visible name.
    Syntax
    Property Caption As String
    string Caption {get; set;}
    Example
    Programmatically start Edit Annotation
    // programmatically activates the Edit Annotation tool by invoking the corresponding
    // plugin. The tool must be enabled for the operation to succeed.
    {
      var plugin = FrameworkApplication.GetPlugInWrapper("esri_editing_EditVerticesText");
      if (plugin.Enabled)
        ((ICommand)plugin).Execute(null);
    }
    Requirements

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

    ArcGIS Pro version: 3.0 or higher.
    See Also