IWebViewControl.ContainsFullScreenElementChanged Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se produce cuando el estado de IWebViewControl contiene actualmente un elemento de pantalla completa o no cambia.
// 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)
Tipo de evento
TypedEventHandler<IWebViewControl,IInspectable>