Link Search Menu Expand Document

SSpread « CSVDocument Operator

This operator loads the CSVDocument object on the right side against the SSpread object on the left side.

The existing data will be deleted and replaced with the data in the CSVDocument object.

Internally, the LoadTextFile method is executed.
Added since Ver.5.0.2

Example of usage

/* Download CSV from the server and display it on SSpread */
var csvdoc = new CSVDocument;
csvdoc.get("test.csv");
SSpread1 << csvdoc;
 
 
/* Display CSV constants in SSpread */
SSpread1 << new CSVDocument << csv {
item1, item2, item3
item1, item2, item3
item1, item2, item3
item1, item2, item3
};