ES3Spreadsheet Constructor
public ES3Spreadsheet()
Description
Creates a blank spreadsheet.
Examples
// Create a blank ES3Spreadsheet.
var sheet = new ES3Spreadsheet();
// Save some values into the spreadsheet.
sheet.SetCell(0,0, "hitpoints");
sheet.SetCell(1,0, 12);
sheet.SetCell(0,1, "position");
sheet.SetCell(1,0, transform.position);
// Save the file to a CSV.
sheet.Save("myData.csv");