protect方法

protect

保护工作表。

def protect(self, type):
    ...
范围类型描述
typeProtectionType保护类型。

评论

此方法无需密码即可保护工作表。它可以在所有版本的 Excel 文件中显示 protect 工作表。

protect

保护工作表。

def protect(self, type, password, old_password):
    ...
范围类型描述
typeProtectionType保护类型。
passwordstr密码。
old_passwordstr如果工作表已受密码保护,请提供旧密码。
否则,您可以为此参数设置空值或空白字符串。

评论

此方法适用于所有版本的 Excel 文件中的 protect 工作表。

例子

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

也可以看看