Represents a single item shown in a combobox , consisting of an image, caption, tag, and a group label for a subgroup within the combobox.

Namespace:  ESRI.ArcGISExplorer.Application

Assembly:  ESRI.ArcGISExplorer.Application (in ESRI.ArcGISExplorer.Application.dll) Version: 2.0.0.1500 (2.0.0.1500)

Syntax

C#
public class ComboItem
Visual Basic (Declaration)
Public Class ComboItem

Remarks

ComboItems are shown in a ComboBox on the Ribbon within a drop-down list. ComboItems should be added to the Items collection property in order to be shown in the ComboBox.

Each ComboItem has:

  • An image - an icon shown in the ComboBox; often a visual representation of the action or effect of choosing that specific ComboItem.
  • A caption - shown beneath the Image in the ComboBox; maximum visible length is determined by values in the AddIns.xml file.
  • A tag - an object can be stored with a ComboItem to help identify the item or associate it with an action. Not used in the user interface.
  • A group label - used to group ComboItems under headings within the ComboBox.

Inheritance Hierarchy

System..::.Object

  ESRI.ArcGISExplorer.Application..::.ComboItem

See Also