Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

WebView.ContainsFullScreenElementChanged 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.

Occurs when the status of whether the WebView currently contains a full screen element or not changes.

// 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"/>

Event Type

Applies to


Feedback

Was this page helpful?