Note

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

Access to this page requires authorization. You can try .

WebViewControl.FrameDOMContentLoaded 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.

An event that is triggered when a frame in the control has finished parsing its current HTML content.

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

// Register
event_token FrameDOMContentLoaded(TypedEventHandler<IWebViewControl, WebViewControlDOMContentLoadedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
WebViewControl::FrameDOMContentLoaded_revoker FrameDOMContentLoaded(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlDOMContentLoadedEventArgs const&> const& handler) const;
public event TypedEventHandler<IWebViewControl,WebViewControlDOMContentLoadedEventArgs> FrameDOMContentLoaded;
function onFrameDOMContentLoaded(eventArgs) { /* Your code */ }
webViewControl.addEventListener("framedomcontentloaded", onFrameDOMContentLoaded);
webViewControl.removeEventListener("framedomcontentloaded", onFrameDOMContentLoaded);
- or -
webViewControl.onframedomcontentloaded = onFrameDOMContentLoaded;
Public Custom Event FrameDOMContentLoaded As TypedEventHandler(Of IWebViewControl, WebViewControlDOMContentLoadedEventArgs) Implements FrameDOMContentLoaded

Event Type

Implements

Applies to


Feedback

Was this page helpful?