typedef struct _TABLEZONE
{
PRECT pCells;
L_UINT Rows;
L_UINT Columns;
L_UINT nCellsCount;
} TABLEZONE, *pTABLEZONE;
The TABLEZONE structure provides information about table zone.
Member |
Description |
pCells |
Array of rectangles which represent the table cells. |
Rows |
Number of table©s rows. |
Columns |
Number of table©s columns. |
nCellsCount |
Number of cells in the table. |
Comments
To get the number of cells in the array pCell, multiply Rows by Columns.
This structure is used in casting LEADZONE.pZoneData when zone type is table.