CSVDocument.GetCell Method
| Explanation | Specify the row and column,then data of the corresponding cell wiil be retrieved. | |
| Call format | var data = csvdoc.GetCell( row, column ) | |
| Return value | Character string of cell If the corresponding cell does not exist, null is returned. | |
| Arguments | integer row | Retrieve cell which row starts from 0 |
| integer column | Retrieve cell which column starts from 0 | |
| Exception | None | |
| Example of use | | |
| Related item | SetCell, GetCells, GetCellByName methods | |