EssGSendRows

Sends the rows to the server once an operation has been started.

Syntax

ESSG_FUNC_M EssGSendRows (hGrid, pRangeIn, ppDataIn);
ParameterData TypeDescription

hGrid

ESSG_HGRID_T

Handle passed back from EssGNewGrid.

pRangeIn

ESSG_RANGE_T

Describes the extent of the data in ppDataIn.

ppDataIn

ESSG_DATA_T

A two-dimensional array of cells describing the data.

Notes

Return Value

If successful, returns ESSG_STS_NOERR.

Access

None.

Example

     sts = EssGSendRows(hGrid, &rDataRangeIn, ppDataIn);

See an example that uses this code in the EssGBeginRetrieve Example section.

See Also