Click or drag to resize

MFS Enumeration

Defines a menu item state options.

Namespace:  callback.ShellBoost.Core.WindowsShell
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
[FlagsAttribute]
public enum MFS
Members
  Member nameValueDescription
MF_GRAYED1 ndicates that the menu item is disabled and grayed so that it cannot be selected.
MF_DISABLED2 Indicates that the menu item is disabled, but not grayed, so it cannot be selected.
MFS_GRAYED3 Disables the menu item and grays it so that it cannot be selected.
MFS_CHECKED8 Checks the menu item
MFS_HILITE128 Highlights the menu item.
MFS_ENABLED0 Enables the menu item so that it can be selected. This is the default state.
MFS_UNCHECKED0 Unchecks the menu item.
MFS_UNHILITE0 Removes the highlight from the menu item. This is the default state.
MFS_DEFAULT4096 Specifies that the menu item is the default. A menu can contain only one default menu item, which is displayed in bold. If you want to set that state to a menu item, you must remove the item that has the MFS_DEFAULT state, if any.
See Also