WebView.ContainsFullScreenElementChanged Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
// Register
event_token ContainsFullScreenElementChanged(TypedEventHandler<WebView, IInspectable const&> const& handler) const;
// Revoke with event_token
void ContainsFullScreenElementChanged(event_token const* cookie) const;
// Revoke with event_revoker
WebView::ContainsFullScreenElementChanged_revoker ContainsFullScreenElementChanged(auto_revoke_t, TypedEventHandler<WebView, IInspectable const&> const& handler) const;
public event TypedEventHandler<WebView,object> ContainsFullScreenElementChanged;
function onContainsFullScreenElementChanged(eventArgs) { /* Your code */ }
webView.addEventListener("containsfullscreenelementchanged", onContainsFullScreenElementChanged);
webView.removeEventListener("containsfullscreenelementchanged", onContainsFullScreenElementChanged);
- or -
webView.oncontainsfullscreenelementchanged = onContainsFullScreenElementChanged;
Public Custom Event ContainsFullScreenElementChanged As TypedEventHandler(Of WebView, Object)
<WebView ContainsFullScreenElementChanged="eventhandler"/>
Type d'événement
TypedEventHandler<WebView,IInspectable>