Frees data that has been returned via EssGGetRows.
Syntax
ESSG_FUNC_M EssGFreeRows (hGrid, pRange, ppData);
Parameter | Data Type | Description |
---|---|---|
hGrid | ESSG_HGRID_T | Handle passed back from EssGNewGrid. |
pRange | ESSG_RANGE_T | Describes the extent of the data. |
ppData | ESSG_DATA_T | A two-dimensional array of data to be freed. |
Return Value
If successful, returns ESSG_STS_NOERR.
Access
None.
Example
EssGFreeRows(hGrid, &rDataRangeOut, ppDataOut);
See an example that uses this code in the EssGBeginRetrieve Example section.
See Also