Purpose
Copies the content of the specified row in a table parameter to a specified memory area.
Syntax
void CopyLineTo(int nIndex, void *pDestination);
Parameters
nIndex
: a zero-based integer specifying the desired row.pDestination: a void pointer pointing to the destination memory area.
Exceptions
Throws const char* when RFC Library fails to copy line.
Description
The application progammer must make sure that the destination block of memory is large enough to hold a table row.
Related Information
CopyLineFrom