Legacy Documentclose button

Important: The information in this document is obsolete and should not be used for new development.

Previous Book Contents Book Index Next

Inside Macintosh: More Macintosh Toolbox /
Chapter 4 - List Manager / List Manager Reference
Data Structures


The Cell Record

A cell record specifies the coordinates of a cell in a list. The Cell data type defines a cell record.

TYPE  Cell = Point;
Field Description
v
The row number of the cell.
h
The column number of the cell.
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 h field to 2 and its v field to 5.


Previous Book Contents Book Index Next

© Apple Computer, Inc.
6 JUL 1996