SpreadsheetReadBinary

Reads a spreadsheet file into a binary object.

Method Signature

SpreadsheetReadBinary(src=[any])

Arguments

Argument
Type
Required
Description
Default

src

STRING

true

The path to the spreadsheet file.

Examples

Read legacy Excel file:

// Read .xls file (binary format)
var spreadsheet = SpreadsheetReadBinary( "/path/to/file.xls" );
println( "Read legacy Excel file" );

Last updated

Was this helpful?