reflect.Value.getField
Returns a field by index for a record.
Syntax
getField(
     index INTEGER )
  RETURNS reflect.Value- index is the ordinal position of the field in the RECORDstructure.
Usage
The getField() method returns a reflect.Value object that is a
reference to the field, of the record structure represented by this reflect.Value
object, at the member position specified as parameter. First member starts at 1.
The reflect.Value object used to call this method must have been
created with a RECORD variable, or is a
reflect.Value object returned from a method like getField(), getFieldByName(), getArrayElement(), or
getDictionaryElement(), and references a record structure.
The new reflect.Value object references the original
variable: Any call to a reflection manipulation method modifies the underlying variable
directly.
Example
IMPORT reflect
MAIN
    DEFINE rec RECORD
               pkey INTEGER,
               name VARCHAR(30)
           END RECORD
    DEFINE val reflect.Value
    LET rec.pkey = 101
    LET rec.name = "Mike FITZPATRICK"
    LET val = reflect.Value.valueOf( rec )
    DISPLAY "value  = ", val.getField(1).toString()
    DISPLAY "type   = ", val.getField(1).getType().toString()
END MAINShows:
value  = 101
type   = INTEGER