protect Methode

protect

Schützt das Arbeitsblatt.

def protect(self, type):
    ...
ParameterTypBeschreibung
typeProtectionTypeSchutzart.

Bemerkungen

Diese Methode schützt das Arbeitsblatt ohne Passwort. Es kann das Arbeitsblatt protect in allen Versionen der Excel-Datei speichern.

protect

Schützt das Arbeitsblatt.

def protect(self, type, password, old_password):
    ...
ParameterTypBeschreibung
typeProtectionTypeSchutzart.
passwordstrPasswort.
old_passwordstrWenn das Arbeitsblatt bereits durch ein Passwort geschützt ist, geben Sie bitte das alte Passwort ein.
Andernfalls können Sie für diesen Parameter einen Nullwert oder eine leere Zeichenfolge festlegen.

Bemerkungen

Diese Methode kann protect Arbeitsblätter in allen Versionen von Excel-Dateien verwenden.

Beispiel

from aspose.cells import ProtectionType, Workbook

# Instantiating a Workbook object
excel = Workbook("template.xlsx")
# Accessing the first worksheet in the Excel file
worksheet = excel.worksheets[0]
# Protecting the worksheet with a password
worksheet.protect(ProtectionType.ALL, "aspose", None)
# Saving the modified Excel file in default (that is Excel 20003) format
excel.save("output.xls")

Siehe auch