constants MenuItemTypeEnum
The MenuItemTypeEnum type specifies the type of Item objects to be collected using the Get method. The Get method can be used to get a collection / safe array of Item objects with a specified characteristics. For instance, you can collect the items of Edit type, or items that holds an Edit field inside. The MenuItemTypeEnum type supports the following values:

NameValueDescription
exRegularMenuItem0 Indicates a regular item. A regular item contains no sub-menus, no sub-control, no check box, no radio buttons and it is not a separator item.
exCheckBoxMenuItem1 Indicates an item with a check box. The Check property specifies whether the item displays a check box.
exRadioButtonMenuItem2 Indicates an item with a radio button. The Radio property specifies whether the item displays a radio button.
exSubMenuItem3 Indicates a sub-menu item or an item that displays another menu.
exSeparatorMenuItem4 Specifies a separator item. The SubMenu property gives access to the items collection being shown in the popup menu.
exControlMenuItem5 Indicates a sub-menu item that displays an ActiveX or a Window inside. The SubControl property gives access to the Control object being displayed. 
exAllMenuItems15 Indicates any type of item
exImageMenuItem16 This flag can be combined with any other flag and value to specify the items that display icons using the Image property.
exDisplayTFIMenuItem32 Reserved.
exEditMenuItem64 This flag can be combined with any other flag and value to specify the items that display any Edit field inside. The EditCaption property specifies the caption to be shown in the item's edit field.
exDisabledMenuItem128 This flag can be combined with any other flag and value to specify the disabled items, or items with the Enabled property on False.
exUncheckedMenuItem256 This flag can be combined with any other flag and value to specify un-checked items, or items with the Checked property on False.
exCheckedMenuItem512 This flag can be combined with any other flag and value to specify checked items, or items with the Checked property on True.
exPartialCheckedMenuItem768 Reserved.