1.6

Table Of Contents
fieldExists(xPath
In a XML file, that method returns True if the specified xPath exists in the current record.
Otherwise, it returns False.
xPath
String.
Examples
find()
Finds the first occurrence of a string starting from the current position. The search can be
constrained to the series of characters in a text file or to a vertical strip in a PDF file located
between leftConstraint and rightConstraint, expressed in characters (or in millimeters for a
PDF file). The method returns null if stringToFind cannot be found, otherwise it returns a
rectValueText object.
The rectValueText contains the absolute Left, Top, Right and Bottom coordinates of the
smallest possible rectangle that completely encloses stringToFind.
Note that partial matches are not allowed, i.e. the entire stringToFind must be found between
the leftConstraint and rightConstraint parameters. Also, calling this method does not move
the current position to the location where stringToFind was found, allowing you to use the
method as a look-ahead function without disrupting the rest of the workflow.
find (stringToFind, leftConstraint, rightConstraint)
Finds the first occurrence of a string starting from the current position.
stringToFind
String to find.
leftConstraint
Number indicating the left limit from which the search is performed.
rightConstraint
Number indicating the right limit from which the search is performed.
Page 252