Whatever message this page gives is out now! Go check it out!
streamingSpreadsheetNew(sheetName, randomAccessWindowSizeName | Required | Type | Description |
sheetName | No | String | The name of the sheet to be created. If you do not specify any parameter, a sheet with the name sheet1 is created. |
randomAccessWindowSize | No | Integer | The number of rows to be kept in memory at a time. The default value is 100. |
<cfscript>
theFile=GetDirectoryFromPath(GetCurrentTemplatePath()) & "streamingSpreadsheetNewDoc.xlsx";
obj = streamingSpreadsheetNew("Sheet 1",100)
SpreadsheetSetCellValue(obj,"365",1,4);
// write values to the spreadsheet
spreadsheetwrite(obj, theFile,"",true,false);
</cfscript><cfscript>
theFile=GetDirectoryFromPath(GetCurrentTemplatePath()) & "streamingSpreadsheetNewDoc.xlsx";
obj = streamingSpreadsheetNew("Sheet 1",10)
SpreadsheetSetCellValue(obj,"365",1,4);
spreadsheetwrite(obj, theFile,"",true,false);
</cfscript>