CoreWebView2ContextMenuItemKind 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 the menu item kind for the Kind property.
public enum CoreWebView2ContextMenuItemKind
type CoreWebView2ContextMenuItemKind =
Public Enum CoreWebView2ContextMenuItemKind
- Inheritance
-
CoreWebView2ContextMenuItemKind
Fields
Name | Value | Description |
---|---|---|
Command | 0 | Specifies a command menu item kind. |
CheckBox | 1 | Specifies a check box menu item kind. CoreWebView2ContextMenuItem objects of this kind will need the IsChecked property to determine current state of the check box. |
Radio | 2 | Specifies a radio button menu item kind. CoreWebView2ContextMenuItem objects of this kind will need the IsChecked property to determine current state of the radio button. |
Separator | 3 | Specifies a separator menu item kind. CoreWebView2ContextMenuItem objects of this kind are used to signal a visual separator with no functionality. |
Submenu | 4 | Specifies a submenu menu item kind. CoreWebView2ContextMenuItem objects of this kind will contain a collection of its children CoreWebView2ContextMenuItem objects. |