CSVDocument « SSpread Operator
This operator loads the SSpread object on the right side against the CSVDocument object on the left side.
Internally, the ExportToTextFile method is executed.
Added since Ver.5.0.2
Example of usage
/* Save the contents of SSpread as CSV */
var csvdoc = new CSVDocument;
csvdoc << SSpread1;
var fs = new FileSystem;
var fp = fs.open("test.csv", FileSystem.OPEN_WRITE);
csvdoc.save(fp);
fp.close();