ExcelScript.PrintOrder enum
/**
* This script sets the print order for every worksheet in the workbook.
* The order of printed content will go over (e.g., left-to-right)
* then down (i.e., top-to-bottom).
*/
function main(workbook: ExcelScript.Workbook) {
// Access every worksheet in the workbook.
workbook.getWorksheets().forEach(worksheet => {
// Get the page layout for each sheet.
const layout: ExcelScript.PageLayout = worksheet.getPageLayout();
// Set the print order to over-then-down.
layout.setPrintOrder(ExcelScript.PrintOrder.overThenDown);
});
}
downThenOver | Traite les lignes les unes après les autres de haut en bas avant de traiter les pages ou champs de page vers la droite. |
overThenDown | Traite les pages ou champs page vers la droite avant de descendre à la ligne suivante. |
Commentaires sur Office Scripts
Office Scripts est un projet open source. Sélectionnez un lien pour fournir des commentaires :