SpreadsheetIsBinaryFormat

Checks if a spreadsheet is in binary format (.xls).

Method Signature

SpreadsheetIsBinaryFormat(spreadsheetObj=[any])

Arguments

Argument
Type
Required
Description
Default

spreadsheetObj

ANY

true

The spreadsheet object to check.

Examples

Check if spreadsheet is binary format:

// Determine file format
var spreadsheet = SpreadsheetNew( xmlformat = false );
if ( SpreadsheetIsBinaryFormat( spreadsheet ) ) {
    println( "Binary (.xls) format" );
}

Last updated

Was this helpful?