Row 

Purpose

Obtains pointer to a row’s memory for reading and writing.

Syntax

void* Row(int nRow);

Parameters

nRow: Row number, starting from 0.

Return Value

Pointer to the specified row’s memory if found. Otherwise returns NULL.

Description

Writing to the row memory is permitted. To be safe, use the ConstRow function if you only need to read from the row. Use Cell or Field if you want to access individual fields.

Related Information

ConstRow

CopyLineTo

CopyLineFrom