保护和取消保护工作簿结构
Contents
[
Hide
]
为防止其他用户查看隐藏的工作表、添加、移动、删除或隐藏工作表以及重命名工作表,您可以使用密码保护 Excel 工作簿的结构。
Aspose.Cells for Python 支持对Excel文件工作簿结构的保护和解除保护。
保护和取消保护 MS Excel 中的工作簿结构
- 点击审阅 > 保护工作簿.
- 输入密码密码框.
- 选择好的 重新输入密码进行确认,然后选择好的再次。
使用 Aspose.Cell for Python 保护工作簿结构
只需要下面几行简单的代码就可以实现对Excel文件工作簿结构的保护。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Create a new file. | |
workbook = Workbook() | |
#Protect workbook structure. | |
workbook.protect(ProtectionType.STRUCTURE, "password") | |
#Save Excel file. | |
workbook.save("Book1.xlsx") |
使用 Aspose.Cell for Python 取消保护工作簿结构
使用 Aspose.Cells API 可以轻松取消保护工作簿结构。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Open an Excel file which workbook structure is protected. | |
workbook = Workbook("Book1.xlsx") | |
#Unprotect workbook structure. | |
workbook.unprotect("password") | |
#Save Excel file. | |
workbook.save("Book1.xlsx") |
注意:需要正确的密码。