IWebViewControl.ContentLoading Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica quando IWebViewControl ha iniziato a caricare nuovo contenuto.
// Register
event_token ContentLoading(TypedEventHandler<IWebViewControl, WebViewControlContentLoadingEventArgs const&> const& handler) const;
// Revoke with event_token
void ContentLoading(event_token const* cookie) const;
// Revoke with event_revoker
IWebViewControl::ContentLoading_revoker ContentLoading(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlContentLoadingEventArgs const&> const& handler) const;
event TypedEventHandler<IWebViewControl,WebViewControlContentLoadingEventArgs> ContentLoading;
function onContentLoading(eventArgs) { /* Your code */ }
iWebViewControl.addEventListener("contentloading", onContentLoading);
iWebViewControl.removeEventListener("contentloading", onContentLoading);
- or -
iWebViewControl.oncontentloading = onContentLoading;
Event ContentLoading As TypedEventHandler(Of IWebViewControl, WebViewControlContentLoadingEventArgs)