2020.1

Table Of Contents
FieldByName(const String Name)
Returns the value of the Metadata Field of the specified name. (See: "Fields" on page233.) If
more than one field has the same name, this method returns the value of the first one it finds,
starting at the first field in the list.
Parameters:
Name
Name of the field to retrieve.
Returns:
The value of the field as a string. If an field named Name is not found, an empty string is
returned.
FieldByNameIndex(const String Name, Integer Index)
Returns the value of the n'th metadata field of the specified name. This method can be used to
retrieve the value of a specific field when more than one field has the same name.
Parameters:
Name
Name of the field to retrieve.
Index
Ordinal of the field to retrieve. To retrieve the value of the first field named Name, use 0. For
the second field, use 1, and so on.
Returns:
The value of the specified field as a string. If an field named Name is not found, or Index is
higher or equal to the number of fields named Name (in other words, you specify 4 to get the
fifth but there are only three), an empty string is returned.
Exception:
l EOleException: Index is lower than 0.
Page 224