__VSSHOWCONTEXTMENUOPTS Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies options for display of context menus.
public enum class __VSSHOWCONTEXTMENUOPTS
public enum class __VSSHOWCONTEXTMENUOPTS
enum __VSSHOWCONTEXTMENUOPTS
public enum __VSSHOWCONTEXTMENUOPTS
type __VSSHOWCONTEXTMENUOPTS =
Public Enum __VSSHOWCONTEXTMENUOPTS
- Inheritance
-
__VSSHOWCONTEXTMENUOPTS
Fields
Name | Value | Description |
---|---|---|
VSCTXMENU_SELECTFIRSTITEM | 65536 | Automatically select the first item. |
VSCTXMENU_SHOWUNDERLINES | 131072 | Show keyboard mnemonic underlines. |
VSCTXMENU_SUPPORTSTYPEAHEAD | 262144 | Supports typeahead, and should also be a sorted dynamic item list. |
Remarks
These are additional options for the dwCompRole parameter for ShowContextMenu.
Combine these flags with the OLEROLE enumeration.
If the role is OLEROLE_UNKNOWN (-1), then these flags cannot be used and they are ignored.
COM Signature
From vsshell80.idl:
enum __VSSHOWCONTEXTMENUOPTS
{
VSCTXMENU_SELECTFIRSTITEM = 0x00010000,
VSCTXMENU_SHOWUNDERLINES = 0x00020000,
VSCTXMENU_SUPPORTSTYPEAHEAD = 0x00040000
};
typedef DWORD VSSHOWCONTEXTMENUOPTS;