 | 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
Syntaxpublic List<string> ReadRow(
int lRow
)
Public Function ReadRow (
lRow As Integer
) As List(Of String)
Parameters
- lRow
- Type: SystemInt32
Row to read. Row is 0-based, from beginning of cursor.
Return Value
Type:
ListStringList of rowvalues,
null on error.
Implements
ICommenceCursorReadRow(Int32)
RemarksThis 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