一个枚举,表示电子表格中可以保护其免遭编辑的部分。
如需调用枚举,您需要调用其父类、名称和属性。例如
SpreadsheetApp.ProtectionType.RANGE。
// Remove all range protections in the spreadsheet that the user has permission // to edit. const ss = SpreadsheetApp.getActive(); const protections = ss.getProtections(SpreadsheetApp.ProtectionType.RANGE); for (const protection of protections) { if (protection.canEdit()) { protection.remove(); } }
// Removes sheet protection from the active sheet, if the user has permission to // edit it. const sheet = SpreadsheetApp.getActiveSheet(); const protection = sheet.getProtections(SpreadsheetApp.ProtectionType.SHEET)[0]; if (protection?.canEdit()) { protection.remove(); }
属性
| 属性 | 类型 | 说明 |
|---|---|---|
RANGE | Enum | 在一定范围内提供保护。 |
SHEET | Enum | 工作表保护。 |