Click or drag to resize
TableNextRow Method
Moves to the next record row in the Table.

Namespace: Aceoffix.ExcelReader
Assembly: Aceoffix (in Aceoffix.dll) Version: 5.0.0.1
Syntax
public void NextRow()
Remarks

When the Table is opened, the default record is the first row. And you can call the NextRow() method to get the data form the next row. If you want to get all data from the Table, you can use NextRow() method and EOF property to loop all the record rows of the Table.

Examples

Please refer to the code example in OpenTable(String) method.

See Also