1.5

Table Of Contents
fieldExists(fieldName)
In a CSV file, that method returns True if the specified fieldName exists in the current record.
Otherwise, it returns False.
fieldName
String that represents a field name (column) in a CSV file.
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 relative 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.
Related Objects: Boundaries and Data.
find (stringToFind, leftConstraint, rightConstraint)
Finds the first occurrence of a string starting from the current position.
stringToFind
Page 245