طريقة protect
محتويات
[
يخفي
]protect
يحمي ورقة العمل.
def protect(self, type):
...
معامل | يكتب | وصف |
---|---|---|
type | ProtectionType | نوع الحماية. |
ملاحظات
تحمي هذه الطريقة ورقة العمل بدون كلمة مرور. ويمكن protect ورقة عمل في كافة إصدارات ملف Excel.
protect
يحمي ورقة العمل.
def protect(self, type, password, old_password):
...
معامل | يكتب | وصف |
---|---|---|
type | ProtectionType | نوع الحماية. |
password | str | كلمة المرور. |
old_password | str | إذا كانت ورقة العمل محمية بالفعل بكلمة مرور، فيرجى إدخال كلمة المرور القديمة. بخلاف ذلك، يمكنك تعيين قيمة فارغة أو سلسلة فارغة لهذه المعلمة. |
ملاحظات
يمكن بهذه الطريقة protect ورقة عمل في كافة إصدارات ملف Excel.
مثال
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")
أنظر أيضا
- الوحدة
aspose.cells
- فئة
Worksheet