IWebViewControl.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 IWebViewControl currently contains a full screen element or not changes.
// 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
IWebViewControl::ContainsFullScreenElementChanged_revoker ContainsFullScreenElementChanged(auto_revoke_t, TypedEventHandler<IWebViewControl, IInspectable const&> const& handler) const;
event TypedEventHandler<IWebViewControl,object> ContainsFullScreenElementChanged;
function onContainsFullScreenElementChanged(eventArgs) { /* Your code */ }
iWebViewControl.addEventListener("containsfullscreenelementchanged", onContainsFullScreenElementChanged);
iWebViewControl.removeEventListener("containsfullscreenelementchanged", onContainsFullScreenElementChanged);
- or -
iWebViewControl.oncontainsfullscreenelementchanged = onContainsFullScreenElementChanged;
Event ContainsFullScreenElementChanged As TypedEventHandler(Of IWebViewControl, Object)
Event Type
TypedEventHandler<IWebViewControl,IInspectable>