-
-
Notifications
You must be signed in to change notification settings - Fork 36
newStreamingXlsx
Julian Halliwell edited this page Dec 22, 2018
·
3 revisions
(Version 2+)
Returns a new XML spreadsheet workbook object which uses memory-efficient streaming while being populated.
newStreamingXlsx( [sheetName [, streamingWindowSize] ] );
-
sheetName
string: name to give the default sheet in the new workbook. -
streamingWindowSize
integer default=100: (positive integer greater than 0) the maximum number of rows that are kept in memory at once while populating the sheet, before being flushed to disk.
spreadsheet = New spreadsheet();
workbook = spreadsheet.newStreamingXlsx( streamingWindowSize=10 );