Important: The information in this document is obsolete and should not be used for new development.
The Cell Record
A cell record specifies the coordinates of a cell in a list. TheCell
data type defines a cell record.
TYPE Cell = Point;Note that column and row numbers are 0-based. Also note that this chapter designates cells using the notation (column-1, row-1), so that a cell with coordinates (2,5) is in the third column and sixth row of a list. You specify a cell with coordinates (2,5) by setting the cell's
Field Description
v
- The row number of the cell.
h
- The column number of the cell.
h
field to 2 and itsv
field to 5.