Click or drag to resize

CommenceCursorReadRow Method

Reads specified row from the cursor.

This method is just a convenient way to return data without having to create a ICommenceQueryRowSet.

If you need to apply formatting, see the IExportEngine interface.

Namespace:  Vovin.CmcLibNet.Database
Assembly:  Vovin.CmcLibNet (in Vovin.CmcLibNet.dll) Version: 1.0.7729.42686
Syntax
public List<string> ReadRow(
	int lRow
)

Parameters

lRow
Type: SystemInt32
Row to read. Row is 0-based, from beginning of cursor.

Return Value

Type: ListString
List of rowvalues, null on error.

Implements

ICommenceCursorReadRow(Int32)
Remarks
This method is only available in .NET.

If the cursor has the UseThids flag defined, the first element of the inner list will contain the thid. In that case the inner list count will be the number of columns in the category plus one.

See Also