Defines a menu item type.
Namespace:
ShellBoost.Core.WindowsShell
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax [FlagsAttribute]
public enum MFT
Members
| Member name | Value | Description |
---|
| MFT_STRING | 0 |
Displays the menu item using a text string.
|
| MFT_BITMAP | 4 |
Displays the menu item using a bitmap
|
| MFT_MENUBARBREAK | 32 |
Places the menu item on a new line (for a menu bar) or in a new column (for a drop-down menu, submenu, or shortcut menu). For a drop-down menu, submenu, or shortcut menu, a vertical line separates the new column from the old.
|
| MFT_MENUBREAK | 64 |
Places the menu item on a new line (for a menu bar) or in a new column (for a drop-down menu, submenu, or shortcut menu). For a drop-down menu, submenu, or shortcut menu, the columns are not separated by a vertical line.
|
| MFT_RADIOCHECK | 512 |
Displays selected menu items using a radio-button mark instead of a check mark
|
| MFT_SEPARATOR | 2048 |
Specifies that the menu item is a separator. A menu item separator appears as a horizontal dividing line.
|
| MFT_RIGHTORDER | 8192 |
Specifies that menus cascade right-to-left (the default is left-to-right). This is used to support right-to-left languages, such as Arabic and Hebrew.
|
| MFT_RIGHTJUSTIFY | 16384 |
Right-justifies the menu item and any subsequent items. This value is valid only if the menu item is in a menu bar.
|
See Also