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
/// Determines if the find operation is case sensitive. Returns TRUE if the find is case sensitive, FALSE otherwise.
551
-
///In text operations such as case sensitivity and word breaking, the behavior can vary by locale, which may be influenced by both the browser's UI locale and the document's language settings. The browser's UI locale
553
+
///When toggling case sensitivity, the behavior can vary by locale, which may be influenced by both the browser's UI locale and the document's language settings. The browser's UI locale
552
554
/// typically provides a default handling approach, while the document's language settings (e.g., specified using the HTML lang attribute) can override these defaults to apply locale-specific rules. This dual consideration
553
-
/// ensures that text is processed in a manner consistent with user expectations and the linguistic context of the content
555
+
/// ensures that text is processed in a manner consistent with user expectations and the linguistic context of the content.
554
556
BooleanIsCaseSensitive { get; set; };
555
-
// Determines if only whole words should be matched during the find operation. Returns TRUE if only whole words should be matched, FALSE otherwise.
557
+
558
+
/// Similar to case sensitivity, word matching also can vary by locale, which may be influenced by both the browser's UI locale and the document's language settings. The browser's UI locale
559
+
/// typically provides a default handling approach, while the document's language settings (e.g., specified using the HTML lang attribute) can override these defaults to apply locale-specific rules. This dual consideration
560
+
/// ensures that text is processed in a manner consistent with user expectations and the linguistic context of the content.
561
+
/// ShouldMatchWord determines if only whole words should be matched during the find operation. Returns TRUE if only whole words should be matched, FALSE otherwise.
556
562
BooleanShouldMatchWord { get; set; };
563
+
564
+
/// Gets or sets the state of whether all matches are highlighted.
565
+
/// Returns TRUE if all matches are highlighted, FALSE otherwise.
566
+
/// Note: Changes to this property take effect only when StartFind, FindNext, or FindPrevious is called.
567
+
/// Preferences for the session cannot be updated unless another call to the StartFind function on the server-side is made.
568
+
/// Therefore, changes will not take effect until one of these functions is called.
569
+
BooleanShouldHighlightAllMatches { get; set; };
570
+
571
+
/// Sets this property to hide the default Find UI.
572
+
/// 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.
573
+
/// Returns TRUE if hiding the default Find UI and FALSE if using showing the default Find UI.
574
+
/// Note: Changes to this property take effect only when StartFind, FindNext, or FindPrevious is called.
575
+
/// Preferences for the session cannot be updated unless another call to the StartFind function on the server-side is made.
576
+
/// Therefore, changes will not take effect until one of these functions is called.
/// If called with no Find session active, it will silently do nothing.
604
625
voidStopFind();
605
626
606
-
/// Gets or sets the state of whether all matches are highlighted.
607
-
/// Returns TRUE if all matches are highlighted, FALSE otherwise.
608
-
/// Note: Changes to this property take effect only when StartFind, FindNext, or FindPrevious is called.
609
-
/// Preferences for the session cannot be updated unless another call to the StartFind function on the server-side is made.
610
-
/// Therefore, changes will not take effect until one of these functions is called.
611
-
BooleanShouldHighlightAllMatches { get; set; };
612
-
613
-
/// Sets this property to hide the default Find UI.
614
-
/// 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.
615
-
/// Returns TRUE if hiding the default Find UI and FALSE if using showing the default Find UI.
616
-
/// Note: Changes to this property take effect only when StartFind, FindNext, or FindPrevious is called.
617
-
/// Preferences for the session cannot be updated unless another call to the StartFind function on the server-side is made.
618
-
/// Therefore, changes will not take effect until one of these functions is called.
619
-
BooleanSuppressDefaultFindDialog { get; set; };
620
-
621
-
622
627
/// 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