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 configuration.
566
+
/// Initiates a find using the specified configuration asynchronously.
567
567
/// 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.
568
568
/// If called with an empty string, the Find bar is displayed but no finding occurs. Changing the configuration object after initiation won't affect the ongoing find session.
569
-
/// To change the ongoing find session, StartFind must be called again with a new or modified configuration object.
569
+
/// To change the ongoing find session, StartFindAsync must be called again with a new or modified configuration object.
570
570
/// This method is primarily designed for HTML document queries.
571
+
/// 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.
572
+
/// There may be a slight latency between the UI display and the matches populating in the counter.
573
+
/// The MatchCountChanged and ActiveMatchIndexChanged events are only raised after StartFindAsync has completed, otherwise they will have their default values (-1 for both).
0 commit comments