ワークシートの保護と保護解除
Contents
[
Hide
]
他のユーザーが誤ってまたは故意にワークシート内のデータを変更、移動、または削除するのを防ぐために、Excel ワークシートのセルをロックし、シートをパスワードで保護することができます。
MS Excel でのワークシートの保護と保護解除
- クリックレビュー > ワークシートの保護.
- にパスワードを入力してくださいパスワードボックス.
- 選択する許可するオプション。
- 選択するわかった、パスワードを再入力して確認し、わかったまた。
.Net に Aspose.Cell を使用してワークシートを保護する
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 = new Workbook(); | |
//Gets the first worksheet. | |
Worksheet sheet = workbook.Worksheets[0]; | |
//Protect contents of the worksheet. | |
sheet.Protect(ProtectionType.Contents); | |
//Protect worksheet with password. | |
sheet.Protection.Password = "test"; | |
//Save as Excel file. | |
workbook.Save("Book1.xlsx"); |
.Net に Aspose.Cell を使用してワークシートの保護を解除する
ワークシートの保護は、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
//Create a new file. | |
Workbook workbook = new Workbook("Book1.xlsx"); | |
//Gets the first worksheet. | |
Worksheet sheet = workbook.Worksheets[0]; | |
//Protect contents of the worksheet. | |
sheet.Unprotect("password"); | |
//Save Excel file. | |
workbook.Save("Book1.xlsx"); |