Spreadsheet
Method Signature
Spreadsheet(path=[any], sheetname=[any], xmlformat=[any])Arguments
Argument
Type
Required
Description
Default
Examples
// Using fluent API for method chaining
var sheet = new SpreadsheetFile()
.createSheet( "Sales" )
.addRow( [ "Date", "Amount" ] )
.addRow( [ "2024-01-01", 1500 ] )
.addRow( [ "2024-01-02", 2000 ] )
.formatRow( 1, { bold = true, background = "CCCCCC" } );Related
Last updated
Was this helpful?
