protect yöntemi

İçindekiler
[ ]

protect

Çalışma sayfasını korur.

def protect(self, type):
    ...
ParametreTipTanım
typeProtectionTypeKoruma türü.

Notlar

Bu yöntem çalışma sayfasını parola olmadan korur. Excel dosyasının tüm sürümlerinde protect çalışma sayfası olabilir.

protect

Çalışma sayfasını korur.

def protect(self, type, password, old_password):
    ...
ParametreTipTanım
typeProtectionTypeKoruma türü.
passwordstrŞifre.
old_passwordstrÇalışma sayfası zaten bir parolayla korunuyorsa lütfen eski parolayı girin.
Aksi takdirde bu parametreye boş bir değer veya boş bir dize ayarlayabilirsiniz.

Notlar

Bu yöntem, Excel dosyasının tüm sürümlerinde protect çalışma sayfasını çalıştırabilir.

Örnek

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

Ayrıca bakınız