Partager via


ExcelScript.ProtectionSelectionMode enum

Remarques

Exemples

/**
 * This script protects cells from being selected on the current worksheet.
 */
function main(workbook: ExcelScript.Workbook) {
  // Get the protection settings for the current worksheet.
  const currentSheet = workbook.getActiveWorksheet();
  const sheetProtection = currentSheet.getProtection();

  // Create a new WorksheetProtectionOptions object with the selectionMode property set to `none`.
  let protectionOptions : ExcelScript.WorksheetProtectionOptions = {
    selectionMode: ExcelScript.ProtectionSelectionMode.none
  }

  // Apply the given protection options.
  sheetProtection.protect(protectionOptions);
}

Champs

none

La sélection n’est autorisée pour aucune cellule.

normal

La sélection est autorisée pour toutes les cellules.

unlocked

La sélection est autorisée uniquement pour les cellules qui ne sont pas verrouillées.