Jythonで簡単に保護されたワークシートの保護を解除する
Contents
[
Hide
]
Aspose.Cells - 簡単に保護されたワークシートの保護解除
Aspose.Cells Java for Jythonを使用してドキュメントを追加します。ここでは例を示します。
Jythonコード
from aspose-cells import Settings
from com.aspose.cells import Workbook
from com.aspose.cells import SaveFormat
from com.aspose.cells import FileFormatType
class UnprotectingSimplyProtectedWorksheet:
def __init__(self):
dataDir = Settings.dataDir + 'WorkingWithWorksheets/UnprotectingSimplyProtectedWorksheet/'
filesFormatType = FileFormatType
#Instantiating a Workbook object
workbook = Workbook(dataDir + "Book1.xls")
worksheets = workbook.getWorksheets()
worksheet = worksheets.get(0)
protection = worksheet.getProtection()
#The following 3 methods are only for Excel 2000 and earlier formats
protection.setAllowEditingContent(False)
protection.setAllowEditingObject(False)
protection.setAllowEditingScenario(False)
#Unprotecting the worksheet
worksheet.unprotect()
# Save the excel file.
workbook.save(dataDir + "output.xls", filesFormatType.EXCEL_97_TO_2003)
#Print Message
print "Worksheet unprotected successfully."
if __name__ == '__main__':
UnprotectingSimplyProtectedWorksheet()
ランニングコードのダウンロード
以下に示すいずれかのソーシャルコーディングサイトからAspose.Cellsのドキュメントを追加するをダウンロード: