Retrieves an array of report data for the given drill-through instance handle.
Syntax
ESSG_FUNC_M EssGDTGetData (pDTInst, ppData, pulCount);
Parameter | Data Type | Description |
---|---|---|
pDTInst; | ESSG_PDTHINST_T | Initialized drill-through instance handle. |
ppData; | ESSG_DTDATA_T | Array of report data structures for given data cells. |
pulCount; | ESSG_PULONG_T | Count of data blocks in the ppData array. |
Notes
Call EssGDTGetData() until pulCount is 0 (zero).
Free memory for ppData (ESSG_DTDATA_T) with EssFree() after you call EssGDTGetData().
Example
For a code example , see C Grid API Drill-Through Example.
See Also