TextExists Method (TestObject)

Class

TestObject.

Action

Returns whether the specified text exists.

Syntax

C#
result = testObject.TextExists(text, [occurrence, searchRectangle, timeout, exactMatch])
VB
result = testObject.TextExists(text, [occurrence, searchRectangle, timeout, exactMatch])
Variable Description
result Whether the specified text exists. Boolean.
text The text to be searched for. String.
occurrence Optional: For which occurrence of the text the existence should be checked, if there are multiple results. The first occurrence is 1. Integer.
searchRectangle Optional: The object-relative rectangle in which to search the text. Rectangle.
timeout Optional: Specifies how long the text should be searched for. If no timeout is specified the text is searched only once. Integer.
exactMatch Optional: If true the text must completely match the captured text, otherwise a partial match is allowed. Boolean.