File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -571,11 +571,18 @@ namespace Microsoft.Web.WebView2.Core
571
571
Windows.Foundation.IAsyncAction StartFindAsync (CoreWebView2FindConfiguration configuration );
572
572
573
573
/// Navigates to the next match in the document.
574
+ /// Note: If called when there is no find operation in progress, FindNext will start a new find session.
575
+ /// If there are no matches to find, FindNext will wrap around to the first match if the search direction is forward,
576
+ /// or to the last match if the search direction is backward.
574
577
void FindNext ();
575
-
578
+
576
579
/// Navigates to the previous match in the document.
580
+ /// Note: If called when there is no find operation in progress, FindPrevious will start a new find session.
581
+ /// If there are no matches to find, FindPrevious will wrap around to the last match if the search direction is forward,
582
+ /// or to the first match if the search direction is backward.
577
583
void FindPrevious ();
578
584
585
+
579
586
/// Stops the current 'Find' operation and hides the Find bar.
580
587
/// If called with no Find session active, it will silently do nothing.
581
588
void StopFind ();
You can’t perform that action at this time.
0 commit comments