Partager via


ExcelScript.ClearApplyTo enum

Remarques

Exemples

/**
 * This script removes any extra formatting that's been applied to a table. 
 * This leaves only the base table style effects.
 * Any formatting outside of the table will be left as is.
 */
function main(workbook: ExcelScript.Workbook) {
  // Get the first table on the current worksheet.
  let worksheet = workbook.getActiveWorksheet();
  let table = worksheet.getTables()[0];

  // Get the range used by the table.
  let range = table.getRange();

  // Clear all the formatting that is not applied by the table and the table style.
  range.clear(ExcelScript.ClearApplyTo.formats);
}

Champs

all
contents

Efface le contenu de la plage.

formats

Efface toute la mise en forme de la plage.

hyperlinks

Efface tous les liens hypertexte, mais laisse tout le contenu et la mise en forme intacts.

removeHyperlinks

Supprime les liens hypertexte et la mise en forme de la cellule, mais laisse intacts le contenu, les formats conditionnels et la validation des données.