SpreadsheetGetPrintOrientation

Retrieves the print orientation of a spreadsheet.

Method Signature

SpreadsheetGetPrintOrientation(spreadsheetObj=[any])

Arguments

Argument
Type
Required
Description
Default

spreadsheetObj

ANY

true

The spreadsheet object.

Examples

Get print orientation:

// Check current print orientation
var spreadsheet = SpreadsheetNew();
var orientation = SpreadsheetGetPrintOrientation( spreadsheet );
println( "Orientation: " & orientation );

Last updated

Was this helpful?