ITextRangeProvider.FindText(String, Boolean, Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.