Name | Description |
AddItem | Method that adds an item to the control. |
AddSeparator | Method that adds a separator to the control. |
Clear | Method that removes all the items from the control. |
Delete | Method that deletes the control. |
RemoveItem | Method that removes the specified item from the control. |
Name | Description |
Application | Returns the top-level parent application object. When used the context of Inventor, an Application object is returned. When used in the context of Apprentice, an ApprenticeServer object is returned. |
AutoHide | |
ControlType | Read-only property that returns the control type. |
Count | Read-only property that returns the number of items in the dropdown. |
DisplayName | |
Enabled | |
HasMRUBehavior | |
Index | Read-only property that returns the index this control is currently positioned at within the mini toolbar. |
InternalName | Read-only property that returns a string uniquely identifying this control within the toolbar. |
IsSplitButton | Read-write property that specifies if this is a split button dropdown control. If True, clicking the button will result in an OnClick event. If this property if False, clicking the button will cause the pop-up to be displayed where the user can click on an item in the list. |
Item | Returns the display name of the specified item from the dropdown. |
LargeIcon | |
Parent | Gets the parent object from whom this object can logically be reached. |
Pressed | |
SelectedIndex | |
SelectedItem | Returns the item currently selected. This can return Nothing in the case where nothing is selected and will always return Nothing in the case where HasMRUBehavior is False. |
ShowIcon | |
ShowText | |
StandardIcon | |
ToolTipText | |
Type | Returns an ObjectTypeEnum indicating this object's type. |
Visible |
Name | Description |
OnItemHoverEnd | Event that is fired when the user stops hovering over an item in the drop down in the expanded state. |
OnItemHoverStart | Event that is fired when the user starts to hover over an item in the drop down in the expanded state. |
OnItemRemove | Event that is fired when the user removes an item from the dropdown. |
OnPreMenuDisplay | Event that is fired when the user clicks the dropdown in a way where the drop down menu will be displayed. The event is fired just before the contents of the drop down list are shown to the user, so you can dynamically modify the contents of the list. If the IsSplitButton property is True, then clicking on the arrow to the right of the button will cause this event to be fired and display the drop-down list. Clicking the button itself is result in the OnSelect event to be fired. If the IsSplitbutton property is False, clicking the button will cause this event to be fired and display the drop-down list. |
OnSelect | Event that is fired soon after the user changes the currently selected item using the drop down. |