r.F

Read(1782) Label: record, value,

r is a record, and r.F is the value of field F of record r.

 

Besides using r.F to indicate field value, you can also use r.#F or r.#i; with r.#F, return null if F cannot be found; #i means the ith field; return null if i is beyond-the-range.