Versions Compared

Key

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

...

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>