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
571571 Windows.Foundation.IAsyncAction StartFindAsync (CoreWebView2FindConfiguration configuration );
572572
573573 /// 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.
574577 void FindNext ();
575-
578+
576579 /// 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.
577583 void FindPrevious ();
578584
585+
579586 /// Stops the current 'Find' operation and hides the Find bar.
580587 /// If called with no Find session active, it will silently do nothing.
581588 void StopFind ();
You can’t perform that action at this time.
0 commit comments