WebViewControl.AcceleratorKeyPressed Event
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.
An event that is triggered when the accelerator key is pressed.
// Register
event_token AcceleratorKeyPressed(TypedEventHandler<WebViewControl, WebViewControlAcceleratorKeyPressedEventArgs const&> const& handler) const;
// Revoke with event_token
void AcceleratorKeyPressed(event_token const* cookie) const;
// Revoke with event_revoker
WebViewControl::AcceleratorKeyPressed_revoker AcceleratorKeyPressed(auto_revoke_t, TypedEventHandler<WebViewControl, WebViewControlAcceleratorKeyPressedEventArgs const&> const& handler) const;
public event TypedEventHandler<WebViewControl,WebViewControlAcceleratorKeyPressedEventArgs> AcceleratorKeyPressed;
function onAcceleratorKeyPressed(eventArgs) { /* Your code */ }
webViewControl.addEventListener("acceleratorkeypressed", onAcceleratorKeyPressed);
webViewControl.removeEventListener("acceleratorkeypressed", onAcceleratorKeyPressed);
- or -
webViewControl.onacceleratorkeypressed = onAcceleratorKeyPressed;
Public Custom Event AcceleratorKeyPressed As TypedEventHandler(Of WebViewControl, WebViewControlAcceleratorKeyPressedEventArgs)