Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

ExcelScript.PageOrientation enum

Package:
ExcelScript

Remarks

Used by

Examples

/**
 * This script sets the printing orientation for the entire workbook.
 */
function main(workbook: ExcelScript.Workbook) {
 // Go to each worksheet so the print settings are consistent.
 workbook.getWorksheets().forEach((sheet) => {
 const pageLayout = sheet.getPageLayout();

 // Print every page with a landscape orientation.
 pageLayout.setOrientation(ExcelScript.PageOrientation.landscape);
 });
}

Fields

landscape
portrait

Feedback

Was this page helpful?