Skip to content

Commit 6dd9024

Browse files
authored
Update FindOnPage.md
updated find next and previous
1 parent 9e9f995 commit 6dd9024

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

FindOnPage.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)