A toolbar is a collection of tools (buttons, tools, menus, etc) grouped together on a bar inside the application. Toolbars can float or dock inside the application.

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

Parents

 Toolbars

Children

Name Occurrences Description
 Items

The collection of tools.

Attributes

Name Type Required Description
 caption  string Yes

The caption for the type.

 id  ID Yes

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

 showInitially  boolean

Defines a premier toolbar that automatically appears the first time the target application is run after the toolbar is installed, without the user choosing to display that toolbar.

Syntax

CopyXML
<xs:element name="Toolbar" 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="showInitially" type="xs:boolean" use="optional" />
  </xs:complexType>
</xs:element>

See Also