protect metod

protect

Skyddar kalkylblad.

def protect(self, type):
    ...
ParameterTypBeskrivning
typeProtectionTypeSkyddstyp.

Anmärkningar

Denna metod skyddar kalkylblad utan lösenord. Det kan protect kalkylblad i alla versioner av Excel-fil.

protect

Skyddar kalkylblad.

def protect(self, type, password, old_password):
    ...
ParameterTypBeskrivning
typeProtectionTypeSkyddstyp.
passwordstrLösenord.
old_passwordstrOm kalkylbladet redan är skyddat av ett lösenord, vänligen ange det gamla lösenordet.
Annars kan du ställa in ett nollvärde eller tom sträng för denna parameter.

Anmärkningar

Denna metod kan protect kalkylblad i alla versioner av Excel-fil.

Exempel

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")

Se även