Table of Contents

Enum CoreWebView2ContextMenuItemKind

Namespace
Microsoft.Web.WebView2.Core
Assembly
Microsoft.Web.WebView2.Core.dll

Specifies the menu item kind for the Kind property.

public enum CoreWebView2ContextMenuItemKind

Fields

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.

Command = 0

Specifies a command menu item kind.

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.