protect metod
Innehåll
[
Dölj
]protect
Skyddar kalkylblad.
def protect(self, type):
...
Parameter | Typ | Beskrivning |
---|---|---|
type | ProtectionType | Skyddstyp. |
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):
...
Parameter | Typ | Beskrivning |
---|---|---|
type | ProtectionType | Skyddstyp. |
password | str | Lösenord. |
old_password | str | Om 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
- modul
aspose.cells
- klass
Worksheet