MCPcopy Create free account
hub / github.com/MicrosoftEdge/WebView2Samples / FindPrevious

Method FindPrevious

SampleApps/WebView2APISample/AppWindow.cpp:1470–1480  ·  view source on GitHub ↗

[FindPrevious]

Source from the content-addressed store, hash-verified

1468
1469//! [FindPrevious]
1470bool AppWindow::FindPrevious()
1471{
1472 auto webView2_28 = m_webView.try_query<ICoreWebView2_28>();
1473 CHECK_FEATURE_RETURN(webView2_28);
1474 wil::com_ptr<ICoreWebView2Find> webView2find;
1475 CHECK_FAILURE(webView2_28->get_Find(&webView2find));
1476
1477 CHECK_FAILURE(webView2find->FindPrevious());
1478
1479 return true;
1480}
1481//! [FindPrevious]
1482
1483//! [Stop]

Callers 1

FindPreviousExecutedMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected