Partager via


ExcelScript.PrintComments enum

Remarques

Exemples

/**
 * This script makes the comments print at the end of the worksheet
 * when the workbook is printed.
 */
function main(workbook: ExcelScript.Workbook) {
  // Access every worksheet in the workbook.
  workbook.getWorksheets().forEach(worksheet => {
    // Get the page layout for each sheet.
    const layout = worksheet.getPageLayout();

    // Change the comment printing settings to print them at the end of the sheet.
    layout.setPrintComments(ExcelScript.PrintComments.endSheet);
  });
}

Champs

endSheet

Les commentaires seront imprimés en tant que notes de fin à la fin de la feuille de calcul.

inPlace

Les commentaires seront imprimés où ils ont été insérés dans la feuille de calcul.

noComments

Les commentaires ne seront pas imprimés.