A dynamic collection of menu items on a menu or toolbar.

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

Parents

 Commands

Children

Name Occurrences Description
 Help

The command's help displayed when using the "What's This?" tool on the command.

Attributes

Name Type Required Description
 caption  string Yes

The caption for the type.

 class  string Yes

The class associated with the type. This class is the active portion of the type and resides in the specified library. If this class is not in the default library namespace specified on the root AddIn element, the class name must be the full name (namespace.className).

 id  ID Yes

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

Syntax

CopyXML
<xs:element name="MultiItem" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:complexType>
    <xs:all>
      <xs:element name="Help" />
    </xs:all>
    <xs:attribute name="id" type="xs:ID" use="required" />
    <xs:attribute name="caption" type="xs:string" use="required" />
    <xs:attribute name="class" type="xs:string" use="required" />
  </xs:complexType>
</xs:element>

See Also