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
/// Retrieves the index of the currently active match in the find session. Returns the index of the currently active match, or -1 if there is no active match.
/// Adds an event handler for the `FindActiveMatchIndexChanged` event.
375
+
/// Adds an event handler for the `ActiveMatchIndexChanged` event.
376
376
/// Registers an event handler for the ActiveMatchIndexChanged event. This event is raised when the index of the currently active match changes. This can happen when the user navigates to a different match or when the active match is changed programmatically. The parameter is the event handler to be added. Returns a token representing the added event handler. This token can be used to unregister the event handler.
/// Adds an event handler for the `FindMatchCountChanged` event.
388
-
/// Registers an event handler for the MatchCountChanged event. This event is raised when the total count of matches in the document changes due to a new search operation or changes in the document. The parameter is the event handler to be added. Returns a token representing the added event handler. This token can be used to unregister the event handler.
387
+
/// Adds an event handler for the `MatchCountChanged` event.
388
+
/// Registers an event handler for the MatchCountChanged event. This event is raised when the total count of matches in the document changes due to a new find operation or changes in the document. The parameter is the event handler to be added. Returns a token representing the added event handler. This token can be used to unregister the event handler.
/// Initiates a search using the specified configuration.
401
-
/// Displays the Find bar and starts the search operation. If a search was already ongoing, it will be stopped and replaced with this new instance.
402
-
/// If called with an empty string, the Find bar is displayed but no search occurs. Changing the configuration object after initiation won't affect the ongoing search.
403
-
/// To change the ongoing search, StartFind must be called again with a new or modified configuration object.
404
-
/// This method is primarily designed for HTML document searches.
400
+
/// Initiates a find using the specified configuration.
401
+
/// 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.
402
+
/// 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.
403
+
/// To change the ongoing find session, StartFind must be called again with a new or modified configuration object.
404
+
/// This method is primarily designed for HTML document queries.
/// Initiates a search using the specified configuration.
567
-
/// Displays the Find bar and starts the search operation. If a search was already ongoing, it will be stopped and replaced with this new instance.
568
-
/// If called with an empty string, the Find bar is displayed but no search occurs. Changing the configuration object after initiation won't affect the ongoing search.
569
-
/// To change the ongoing search, StartFind must be called again with a new or modified configuration object.
570
-
/// This method is primarily designed for HTML document searches.
566
+
/// Initiates a find using the specified configuration.
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
+
/// 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.
570
+
/// This method is primarily designed for HTML document queries.
/// Checks if a custom user interface is desired by the end developer. Returns TRUE if using a custom UI, FALSE if using the default.
586
-
BooleanSuppressDefaultDialog { get; set; };
586
+
BooleanSuppressDefaultFindDialog { get; set; };
587
587
588
588
/// Retrieves the index of the currently active match in the find session. Returns the index of the currently active match, or -1 if there is no active match.
589
-
UInt32ActiveMatchIndex { get; };
589
+
Int32ActiveMatchIndex { get; };
590
590
591
-
/// Gets the total count of matches found in the current document based on the last search criteria. Returns the total count of matches.
592
-
UInt32MatchCount { get; };
591
+
/// Gets the total count of matches found in the current document based on the last find sessions criteria. Returns the total count of matches.
592
+
Int32MatchCount { get; };
593
593
594
-
/// Registers an event handler for the MatchCountChanged event. This event is raised when the total count of matches in the document changes due to a new search operation or changes in the document. The parameter is the event handler to be added. Returns a token representing the added event handler. This token can be used to unregister the event handler.
594
+
/// Registers an event handler for the MatchCountChanged event.
595
+
This event is raised when the total count of matches in the document changes due to a new find operation or changes in the document.
596
+
The parameter is the event handler to be added. Returns a token representing the added event handler. This token can be used to unregister the event handler.
/// Registers an event handler for the ActiveMatchIndexChanged event. This event is raised when the index of the currently active match changes. This can happen when the user navigates to a different match or when the active match is changed programmatically. The parameter is the event handler to be added. Returns a token representing the added event handler. This token can be used to unregister the event handler.
600
+
/// Registers an event handler for the ActiveMatchIndexChanged event. This event is raised when the index of the currently active match changes.
601
+
This can happen when the user navigates to a different match or when the active match is changed programmatically.
602
+
The parameter is the event handler to be added. Returns a token representing the added event handler.
603
+
This token can be used to unregister the event handler.
0 commit comments