| Case Sensitive |
- If this property is set to true, then the text string in the Match String
property is compared with text string in the specified rectangular area of
the application screen, using a case-sensitive comparison.
- Otherwise a case-insensitive comparison is used.
|
| End Position |
The offset within the application screen of the character
at the lower right corner of the rectangle. This offset is calculated from
the (Row, Column) position of the character as follows: Offset = ((Row-1)*RowSize)+Column
For
example, assuming that the screen is 25 rows by 80 columns, then the offset
of the character at Row 24, Column 80 of the application screen is:Offset = ((24-1)*80)+80
= 1920
|
| Invert Match |
After the descriptor has been evaluated as true or false
with respect to the currently displayed application screen, the value of the
Invert Match property is checked:- If the Invert Match value is true, then the boolean result obtained by
evaluating the descriptor is inverted, changing true to false or false to
true.
- If the Invert Match value is false, then the boolean result is not inverted.
|
| Match String |
The text to be compared with the text contents of a
rectangle having the specified start position and end position in the currently
displayed application screen. |
| Start Position |
The offset within the application screen of the character
at the upper left corner of the rectangle. This offset is calculated in the
same way as the offset for the End Position property. For example, assuming
that the screen is 25 rows by 80 columns, then the offset of the character
at Row 1, Column 1 of the application screen is:Offset = ((1-1)*80)+1
= 1
|