ICoreWebView2_13

Undocumented in source.
version(Windows && inline_webview2_bindings && all)
interface ICoreWebView2_13 : ICoreWebView2_12 {
static const
GUID iid;
}

Members

Functions

get_Profile
HRESULT get_Profile(ICoreWebView2Profile* value)

The associated ICoreWebView2Profile object. If this CoreWebView2 was created with a CoreWebView2ControllerOptions, the CoreWebView2Profile will match those specified options. Otherwise if this CoreWebView2 was created without a CoreWebView2ControllerOptions, then this will be the default CoreWebView2Profile for the corresponding CoreWebView2Environment.

Inherited Members

From ICoreWebView2_12

add_StatusBarTextChanged
HRESULT add_StatusBarTextChanged(ICoreWebView2StatusBarTextChangedEventHandler eventHandler, EventRegistrationToken* token)

Add an event handler for the StatusBarTextChanged event. StatusBarTextChanged fires when the WebView is showing a status message, a URL, or an empty string (an indication to hide the status bar). \snippet SettingsComponent.cpp StatusBarTextChanged

remove_StatusBarTextChanged
HRESULT remove_StatusBarTextChanged(EventRegistrationToken token)

Remove an event handler previously added with add_StatusBarTextChanged.

get_StatusBarText
HRESULT get_StatusBarText(LPWSTR* value)

The status message text.

Meta