Table of Contents
WebView.Command Event

Occurs when a command is to be executed.

Syntax
 public event CommandHandler Command;
Event Data

The event handler receives an argument of type CommandEventArgs containing data related to this event. The following CommandEventArgs properties provide information specific to this event.

Name Description
CommandId Gets the Id of the command.
Flags Gets a combination of flags of the event.
FrameGets the Frame object associated to this event.
Handled Gets or sets a value indicating whether this event is handled.
MenuInfo Gets a ContextMenuInfo object that contains additional information about the menu if this command was caused by user clicking a menu item.
Remarks

This event occurs when user selects a built-in command from the context menu, or presses a shortcut key combination that triggers either a built-in command or a user registered command.

See Also