WebViewControl.ContainsFullScreenElementChanged Event

Definition

An event that is triggered when the status of whether the control currently contains a full screen element or not changes.

For more info, see Windows.Web.UI.IWebViewControl

// Register
event_token ContainsFullScreenElementChanged(TypedEventHandler<IWebViewControl, IInspectable const&> const& handler) const;

// Revoke with event_token
void ContainsFullScreenElementChanged(event_token const* cookie) const;

// Revoke with event_revoker
WebViewControl::ContainsFullScreenElementChanged_revoker ContainsFullScreenElementChanged(auto_revoke_t, TypedEventHandler<IWebViewControl, IInspectable const&> const& handler) const;
public event TypedEventHandler<IWebViewControl,object> ContainsFullScreenElementChanged;
function onContainsFullScreenElementChanged(eventArgs) { /* Your code */ }
webViewControl.addEventListener("containsfullscreenelementchanged", onContainsFullScreenElementChanged);
webViewControl.removeEventListener("containsfullscreenelementchanged", onContainsFullScreenElementChanged);
- or -
webViewControl.oncontainsfullscreenelementchanged = onContainsFullScreenElementChanged;
Public Custom Event ContainsFullScreenElementChanged As TypedEventHandler(Of IWebViewControl, Object) Implements ContainsFullScreenElementChanged

Event Type

Implements

Applies to