comboBox add-in property

1793
2
11-10-2011 12:08 PM
helenchu
Occasional Contributor II
All,
I'm trying unsuccessfully to make my comboBox to show all items in its dropdown portion.  I used
DropDownHeight, MinDropDownItems ="5"  None worked. 

Thanks for your help
0 Kudos
2 Replies
JeffreyHamblin
New Contributor III
You can find the optional attributes to add to the Config.esriaddinx for your combobox here:
Add-in Combobox schema

The following will set the max dropdown rows to 10:

<ComboBox id="My_TestCombo" 
          class="TestCombo" 
          message="Add-in command generated by Visual Studio project wizard." 
          caption="Test ComboBox" 
          tip="Add-in command tooltip." 
          category="Add-In Controls"
          rows="10"
          image="Images\TestCombo.png" />
0 Kudos
by Anonymous User
Not applicable
Original User: helenchu

It's exactly what I need.  Thank you so very much.
0 Kudos