Link Search Menu Expand Document

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
    var csvdoc = new CSVDocument;
    var res = session.Get("/test/sample.csv");
    csvdoc.Load(res);
    var cell = csvobj.GetCell(0, 1);
    print(cell, "\n");   
    
Related item SetCell, GetCells, GetCellByName methods