ICoreWebView2FrameInfoCollectionIterator

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

Members

Functions

GetCurrent
HRESULT GetCurrent(ICoreWebView2FrameInfo* frameInfo)

Get the current ICoreWebView2FrameInfo of the iterator. Returns HRESULT_FROM_WIN32(ERROR_INVALID_INDEX) if HasCurrent is FALSE.

MoveNext
HRESULT MoveNext(BOOL* hasNext)

Move the iterator to the next FrameInfo in the collection.

get_HasCurrent
HRESULT get_HasCurrent(BOOL* hasCurrent)

TRUE when the iterator has not run out of FrameInfos. If the collection over which the iterator is iterating is empty or if the iterator has gone past the end of the collection, then this is FALSE.

Meta