Performs an operation after all rows have been sent to the serve rusing EssGBeginXxx and EssGSendRows.
Syntax
ESSG_FUNC_M EssGPerformOperation (hGrid, ulOptions);
Parameter | Data Type | Description |
---|---|---|
hGrid; | ESSG_HGRID_T | Handle passed back from EssGNewGrid(). |
ulOptions; | ESSG_ULONG_T | Reserved for future use. Set to zero. |
Notes
After this call is made, call EssGGetResults to get information about the data returned.
Return Value
If successful, returns ESSG_STS_NOERR.
Example
sts = EssGPerformOperation(hGrid, 0);
See an example that uses this code in the EssGBeginPivot Example section.
See Also