ITextRangeProvider.FindText(String, Boolean, Boolean) Method

Definition

Returns a text range subset that contains the specified text.

public:
 System::Windows::Automation::Provider::ITextRangeProvider ^ FindText(System::String ^ text, bool backward, bool ignoreCase);
public System.Windows.Automation.Provider.ITextRangeProvider FindText (string text, bool backward, bool ignoreCase);
abstract member FindText : string * bool * bool -> System.Windows.Automation.Provider.ITextRangeProvider
Public Function FindText (text As String, backward As Boolean, ignoreCase As Boolean) As ITextRangeProvider

Parameters

text
String

The text string to search for.

backward
Boolean

true if the last occurring text range should be returned instead of the first; otherwise false.

ignoreCase
Boolean

true if case should be ignored; otherwise false.

Returns

A text range matching the specified text; otherwise null (Nothing in Visual Basic).

Remarks

There is no differentiation between hidden and visible text.

Applies to