Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ElementDescriptionVersion IntroducedPro Version Introduced
<Group>A single group that appears within a single tab and contains controls.1.03.2
<QuickAccessControls>A list of controls that appear in the quick access toolbar.1.03.2
<SplitButton>A button control with a drop down that can contain other controls.1.03.2
<TabBarControls>The list of controls that appear on the right end of the tab bar area.1.03.2

...

ElementDescriptionAppearsVersion IntroducedPro Version Introduced
<Item>A combo box item.Zero or once1.03.2

...

The ComboBox element defines a combo box control that will appear on the ribbon. To populate the control, include any number of child <Item> elements. You can also manipulate the control using the ComboListComboSelPos, and ComboText properties. When the user selects an item from the combo box, the OnComboSelChange event is fired.

Example

 

Code Block
<ComboBox Key="COB_FONTFACE" Tooltip="Sets the selection's font family.">
  <Item>Arial Black</Item>
  <Item>Tahoma</Item>
</ComboBox>
<ComboBox Key="COB_FONTSIZE" Width="32" Tooltip="Sets the selection's font size.">
  <Item>8</Item>
  <Item>9</Item>
  <Item>10</Item>
  <Item>11</Item>
  <Item>12</Item>
</ComboBox>