A collection of related tools on a tool palette.

Namespace: http://schemas.esri.com/Desktop/AddInsSchema: DesktopAddIns_ElementOnly.xsd

Parents

 Commands

Children

Name Occurrences Description
 Items

The collection of tools on the tool palette.

Attributes

Name Type Required Description
 caption  string Yes

The caption for the type.

 category  string Yes

The name of the category with which this command is associated.

 columns  integer

Defines the number of columns on the tool palette.

 id  ID Yes

The ID for this custom type. IDs must be unique across all customizations.

 isMenuStyle  boolean

Indicates if the tool palette is menu style.

Syntax

CopyXML
<xs:element name="ToolPalette" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:complexType>
    <xs:all>
      <xs:element name="Items" />
    </xs:all>
    <xs:attribute name="id" type="xs:ID" use="required" />
    <xs:attribute name="caption" type="xs:string" use="required" />
    <xs:attribute name="category" type="xs:string" use="required" />
    <xs:attribute name="isMenuStyle" type="xs:boolean" use="optional" />
    <xs:attribute name="columns" type="xs:integer" use="optional" />
  </xs:complexType>
</xs:element>

See Also