You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Initiates a Find using the specified options asynchronously.
577
+
/// Initiates a Find session using the specified options asynchronously.
578
578
/// Displays the Find bar and starts the Find operation. If a Find session was already ongoing, it will be stopped and replaced with this new instance.
579
579
/// If called with an empty string, the Find bar is displayed but no finding occurs. Changing the Find options object after initiation won't affect the ongoing Find session.
580
-
/// To change the ongoing Find session, StartFindAsync must be called again with a new or modified Find options object.
581
-
///StartFind supports, HTML, PDF, and TXT document queries. In general this api is designed for text based Find sessions.
582
-
//// If you start a Find session programmatically on another file format that doesnt have text fields, the Find session will try to execute but will fail to Find any matches. Specifically, it will show the find UI but not find any matches.
583
-
/// Note: The asynchronous action completes when the UI has been displayed with the Find term in the UI bar, and the matches have populated on the counter on the Find bar.
580
+
/// To change the ongoing Find session, StartAsync must be called again with a new or modified Find options object.
581
+
///StartAsync supports, HTML, PDF, and TXT document queries. In general this api is designed for text based Find sessions.
582
+
//// If you start a Find session programmatically on another file format that doesnt have text fields, the Find session will show the find UI but not find any matches.
583
+
/// StartAsync Completion: The asynchronous action completes when the UI has been displayed with the Find term in the UI bar, and the matches have populated on the counter on the Find bar.
584
584
/// There may be a slight latency between the UI display and the matches populating in the counter.
585
-
/// The MatchCountChanged and ActiveMatchIndexChanged events are only raised after StartFindAsync has completed, otherwise they will have their default values (-1 for both).
585
+
/// The MatchCountChanged and ActiveMatchIndexChanged events are only raised after StartAsync has completed, otherwise they will have their default values (-1 for ActiveMatchIndex and 0 for TotalMatchCount).
586
586
/// When initiating a Find session while another session is in progress, the behavior of
587
587
/// the active match index depends on the direction set for the Find operation (forward or backward).
588
588
/// However, calling StartFind again during an ongoing Find operation does not resume from the point
0 commit comments