A combo box on a tool bar.

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.

 category  string Yes

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

 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).

 editable  boolean

Indicates if the combo box is editable.

 hintText  string

Set the hint displayed in the editbox.

 id  ID Yes

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

 image  string

The image that is used as the icon on this command.

 itemSizeString  string

Defines the combo box's drop down width.

 message  string

The status bar message for this type.

 rows  integer

Defines the combo box's drop down height.

 showCaption  boolean

Indicates if the caption is shown when this combo box is placed on toolbar.

 sizeString  string

Defines the combo box's width.

 tip  string

The screen tip for the type. The tip appears when you hover over the item on the toolbar or menu.

Syntax

CopyXML
<xs:element name="ComboBox" 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:attribute name="category" type="xs:string" use="required" />
    <xs:attribute name="image" type="xs:string" use="optional" />
    <xs:attribute name="tip" type="xs:string" use="optional" />
    <xs:attribute name="message" type="xs:string" use="optional" />
    <xs:attribute name="editable" type="xs:boolean" use="optional" />
    <xs:attribute name="showCaption" type="xs:boolean" use="optional" />
    <xs:attribute name="hintText" type="xs:string" use="optional" />
    <xs:attribute name="sizeString" type="xs:string" use="optional" />
    <xs:attribute name="itemSizeString" type="xs:string" use="optional" />
    <xs:attribute name="rows" type="xs:integer" use="optional" />
  </xs:complexType>
</xs:element>

See Also