Important: The information in this document is obsolete and should not be used for new development.
The Data Handle
The List Manager uses a data handle to store information about a list. TheDataHandle
data type defines a data handle.
TYPE DataArray = PACKED ARRAY[0..32000] OF Char; DataPtr = ^DataArray; DataHandle = ^DataPtr;Your application should not change the information in a data handle directly. Your application can, however, read data stored in a list's data handle directly by calling theGetCellDataLocation
procedure to find the offset of a cell's data into the data handle and the length of the cell's data.