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
/// Stops the current 'Find' operation and hides the Find bar.
580
580
voidStopFind();
581
581
582
-
/// Gets or sets the state of whether all matches are highlighted. Returns TRUE if all matches are highlighted, FALSE otherwise.
582
+
/// Gets or sets the state of whether all matches are highlighted.
583
+
/// Returns TRUE if all matches are highlighted, FALSE otherwise.
584
+
/// Note: Changes to this property take effect only when StartFind, FindNext, or FindPrevious is called.
585
+
/// Preferences for the session cannot be updated unless another call to the StartFind function on the server-side is made.
586
+
/// Therefore, changes will not take effect until one of these functions is called.
583
587
BooleanShouldHighlightAllMatches { get; set; };
584
-
585
-
/// Set this property to hide the default Find UI. You can use this to hide the default UI so that you can show your own custom UI or programmatically interact with the Find API while showing no Find UI. Returns TRUE if hiding the default Find UI and FALSE if using showing the default Find UI.
588
+
589
+
/// Sets this property to hide the default Find UI.
590
+
/// You can use this to hide the default UI so that you can show your own custom UI or programmatically interact with the Find API while showing no Find UI.
591
+
/// Returns TRUE if hiding the default Find UI and FALSE if using showing the default Find UI.
592
+
/// Note: Changes to this property take effect only when StartFind, FindNext, or FindPrevious is called.
593
+
/// Preferences for the session cannot be updated unless another call to the StartFind function on the server-side is made.
594
+
/// Therefore, changes will not take effect until one of these functions is called.
586
595
BooleanSuppressDefaultFindDialog { get; set; };
587
596
597
+
588
598
/// 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.
0 commit comments