ExcelScript.AllowEditRangeOptions interface
Die Schnittstelle, die zum Erstellen optionaler Felder des AllowEditRange
Objekts verwendet wird.
Hinweise
Beispiele
/**
* This script adds a password-protected, editable range
* to an otherwise protected worksheet.
*/
function main(workbook: ExcelScript.Workbook, password: string) {
// Get the protection object for the "Data" worksheet.
const dataSheet = workbook.getWorksheet("Data");
const sheetProtection = dataSheet.getProtection();
// Set the password needed to edit the range to be the user provided string.
const editRangeProperties : ExcelScript.AllowEditRangeOptions = {
password: password
};
// Set range "D2:D6" to be editable if the password is provided.
sheetProtection.addAllowEditRange("Notes Section", "D2:D6", editRangeProperties);
// Protect the worksheet.
sheetProtection.protect();
}
Eigenschaften
password | Das Kennwort, das dem zugeordnet ist |
Details zur Eigenschaft
password
Das Kennwort, das dem zugeordnet ist AllowEditRange
.
password?: string;
Eigenschaftswert
string
Zusammenarbeit auf GitHub
Die Quelle für diesen Inhalt finden Sie auf GitHub, wo Sie auch Issues und Pull Requests erstellen und überprüfen können. Weitere Informationen finden Sie in unserem Leitfaden für Mitwirkende.
Office Scripts