共有ワークブックをパスワードで保護または保護解除する
考えられる使用シナリオ
次のスクリーンショットに示すように、Microsoft Excel で共有ブックを保護または保護解除できます。 Aspose.Cells も、この機能をWorkbook.ProtectSharedWorkbook() とWorkbook.UnprotectSharedWorkbook() メソッド。
共有ワークブックをパスワードで保護または保護解除する
次のサンプル コードでは、ワークブックを作成して保護し、共有を有効にして、名前を付けて保存します。出力エクセルファイル .スクリーンショットは、保護を解除しようとすると、Microsoft 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
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
//Create empty Excel file
Workbook wb = new Workbook();
//Protect the Shared Workbook with Password
wb.ProtectSharedWorkbook("1234");
//Uncomment this line to Unprotect the Shared Workbook
//wb.UnprotectSharedWorkbook("1234");
//Save the output Excel file
wb.Save("outputProtectSharedWorkbook.xlsx");