WebViewControl.AcceleratorKeyPressed Event

Definition

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) 

Event Type

Applies to