ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Framework.Contracts Namespace / PlugIn Class / SmallImage Property
Example

In This Topic
    SmallImage Property (PlugIn)
    In This Topic
    Gets or sets the small representation of the command, this may be an image or a xaml element.
    Syntax
    public object SmallImage {get; set;}
    Public Property SmallImage As Object
    Remarks

    Many ribbon controls have three size definitions: large, middle, and small. The large representation is a 32x32 image over its caption. Middle is a 16x16 image beside its caption and small is a 16x16 image only. You should always supply both a large and small image as these may automatically swap depending on the available space in the ribbon.

    This property will by default return the small image specified in its DAML declaration. Use this property if you need to change the small image at run-time.

    Example
    <button id="acme_rename" caption="Rename" className="RenameProjectItem" smallImage="/Images/GenericPencil16.png">
      <tooltip heading="Rename">Rename the project item.
        <disabledText>No project loaded.</disabledText>
      </tooltip>
    </button>
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also