Skip to content

Latest commit

 

History

History
56 lines (40 loc) · 1.58 KB

icorewebview2stringcollection.md

File metadata and controls

56 lines (40 loc) · 1.58 KB
description title ms.date keywords topic_type api_name api_type api_location
A collection of strings.
WebView2 Win32 C++ ICoreWebView2StringCollection
05/28/2024
IWebView2, IWebView2WebView, webview2, webview, win32 apps, win32, edge, ICoreWebView2, ICoreWebView2Controller, browser control, edge html, ICoreWebView2StringCollection
APIRef
ICoreWebView2StringCollection
ICoreWebView2StringCollection.get_Count
ICoreWebView2StringCollection.GetValueAtIndex
COM
embeddedbrowserwebview.dll

interface ICoreWebView2StringCollection

interface ICoreWebView2StringCollection
  : public IUnknown

A collection of strings.

Summary

Members Descriptions
get_Count The number of strings contained in ICoreWebView2StringCollection.
GetValueAtIndex Gets the value at a given index.

Applies to

Product Introduced
WebView2 Win32 1.0.961.33
WebView2 Win32 Prerelease 1.0.955

Members

get_Count

The number of strings contained in ICoreWebView2StringCollection.

public HRESULT get_Count(UINT * value)

GetValueAtIndex

Gets the value at a given index.

public HRESULT GetValueAtIndex(UINT index, LPWSTR * value)

The caller must free the returned string with CoTaskMemFree. See API Conventions.