Edit

GetRecordForListRow (listHandle, rowNumZeroBased)

Result type:  array

Definition:  Returns the entire in-memory record corresponding to an editable list row as an associative array. You can use this in a script to obtain field values of detail line records in the transaction entry window that are not otherwise visible.

Example: 

on ExitedCell:F_TRANS:By_Item(w, l, r, c, v)
    let rec = GetRecordForListRow(l, r)
    syslog(rec)
end

See Also:

PutRecordForListRow: Put mutable fields from array to list row record