ワークシートの保護
ワークシートを保護する
序章
Microsoft Excel の一般的な保護オプションは次のとおりです。
- コンテンツ
- オブジェクト
- シナリオ
保護されたワークシートは機密データを隠したり保護したりしないため、ファイルの暗号化とは異なります。一般に、ワークシートの保護はプレゼンテーションの目的に適しています。これにより、エンド ユーザーはワークシートのデータ、コンテンツ、および書式を変更できなくなります。
ワークシートを保護する
Aspose.Cells はクラスを提供し、ワークブックMicrosoft Excel ファイルを表します。のワークブッククラスにはワークシートExcel ファイル内の各ワークシートにアクセスできるコレクション。ワークシートは、ワークシートクラス。
のワークシートクラスが提供する守るワークシートに保護を適用するために使用されるメソッド。守るメソッドは次のパラメーターを受け入れます。
- 保護タイプ、ワークシートに適用する保護のタイプ。保護タイプは、保護タイプ列挙。
- 新しいパスワード。ワークシートを保護するために使用される新しいパスワード。
- 古いパスワード、ワークシートがすでにパスワードで保護されている場合の古いパスワード。ワークシートがまだ保護されていない場合は、null を渡します。
の保護タイプ列挙には、次の事前定義された保護タイプが含まれています。
保護の種類 | 説明 |
---|---|
全て | ユーザーはこのワークシートで何も変更できません |
コンテンツ | ユーザーはこのワークシートにデータを入力できません |
オブジェクト | ユーザーは描画オブジェクトを変更できません |
シナリオ | ユーザーは保存されたシナリオを変更できません |
構造 | ユーザーは構造を変更できません |
Windows | ウィンドウに保護が適用されます |
なし | 保護は適用されません |
次の例は、ワークシートをパスワードで保護する方法を示しています。
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Creating a file stream containing the Excel file to be opened | |
FileStream fstream = new FileStream(dataDir + "book1.xls", FileMode.Open); | |
// Instantiating a Workbook object | |
// Opening the Excel file through the file stream | |
Workbook excel = new Workbook(fstream); | |
// Accessing the first worksheet in the Excel file | |
Worksheet worksheet = excel.Worksheets[0]; | |
// Protecting the worksheet with a password | |
worksheet.Protect(ProtectionType.All, "aspose", null); | |
// Saving the modified Excel file in default format | |
excel.Save(dataDir + "output.out.xls", SaveFormat.Excel97To2003); | |
// Closing the file stream to free all resources | |
fstream.Close(); |
上記のコードを使用してワークシートを保護した後、ワークシートを開いて保護を確認できます。ファイルを開いてワークシートにデータを追加しようとすると、次のダイアログが表示されます。
ユーザーがワークシートを変更できないことを警告するダイアログ |
---|
![]() |
ワークシートで作業するには、保護、 それからシートの保護を解除からツールメニュー項目。
[シートの保護を解除] メニュー項目を選択すると、以下に示すようにワークシートで作業できるように、パスワードの入力を求めるダイアログが開きます。
||
Microsoft Excel を使用して、ワークシートのいくつかの Cells を保護します
ワークシート内のいくつかのセルのみをロックする必要がある特定のシナリオがあるかもしれません。ワークシート内の特定のセルをロックする場合は、ワークシート内の他のすべてのセルのロックを解除する必要があります。ワークシート内のすべてのセルは、すでにロック用に初期化されています。これを確認して、任意の Excel ファイルを MS Excel で開き、フォーマット | Cells…見せるフォーマット Cellsダイアログ ボックスをクリックし、保護タブをクリックすると、「ロック済み」というラベルの付いたチェックボックスがデフォルトでオンになっていることがわかります。
次のポイントでは、MS Excel を使用していくつかのセルをロックする方法について説明します。この方法は、Microsoft Office Excel 97、2000、2002、2003 以降のバージョンに適用されます。
- をクリックして、ワークシート全体を選択します。すべて選択ボタン (行 1 の行番号の真上、列文字 A の左にある灰色の長方形)。
- クリックCells上でフォーマットメニューで、保護タブをクリックしてから、ロックされたチェックボックス。 これにより、ワークシートのすべてのセルのロックが解除されます もしCellsワークシートの一部がすでにロックされている可能性があります。上でツールメニュー、ポイント保護をクリックし、シートの保護を解除.
- ロックしたいセルだけを選択して手順 2 を繰り返しますが、今回はロックされたチェックボックス。
- 上でツールメニュー、ポイント保護 、 クリックプロテクトシートそしてクリックわかった.
- の中にプロテクトシートダイアログ ボックスで、パスワードを指定し、ユーザーが変更できるようにする要素を選択するオプションがあります。
Aspose Cells を使用して、ワークシートのいくつかの Cells を保護します
この方法では、タスクを実行するためだけに Aspose.Cells API を使用します。
例: 次の例は、ワークシート内のいくつかのセルを保護する方法を示しています。最初にワークシート内のすべてのセルのロックを解除し、次に 3 つのセル (A1、B1、C1) をロックします。最後に、ワークシートを保護します。のスタイルオブジェクトにはブール値のプロパティが含まれています。ロックされています .設定できますロックされていますプロパティを true または false にして適用する*列/行.ApplyStyle()*目的の属性で行/列をロックまたはロック解除する方法。
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Create directory if it is not already present. | |
bool IsExists = System.IO.Directory.Exists(dataDir); | |
if (!IsExists) | |
System.IO.Directory.CreateDirectory(dataDir); | |
// Create a new workbook. | |
Workbook wb = new Workbook(); | |
// Create a worksheet object and obtain the first sheet. | |
Worksheet sheet = wb.Worksheets[0]; | |
// Define the style object. | |
Style style; | |
// Define the styleflag object | |
StyleFlag styleflag; | |
// Loop through all the columns in the worksheet and unlock them. | |
for (int i = 0; i <= 255; i++) | |
{ | |
style = sheet.Cells.Columns[(byte)i].GetStyle(); | |
style.IsLocked = false; | |
styleflag = new StyleFlag(); | |
styleflag.Locked = true; | |
sheet.Cells.Columns[(byte)i].ApplyStyle(style, styleflag); | |
} | |
// Lock the three cells...i.e. A1, B1, C1. | |
style = sheet.Cells["A1"].GetStyle(); | |
style.IsLocked = true; | |
sheet.Cells["A1"].SetStyle(style); | |
style = sheet.Cells["B1"].GetStyle(); | |
style.IsLocked = true; | |
sheet.Cells["B1"].SetStyle(style); | |
style = sheet.Cells["C1"].GetStyle(); | |
style.IsLocked = true; | |
sheet.Cells["C1"].SetStyle(style); | |
// Finally, Protect the sheet now. | |
sheet.Protect(ProtectionType.All); | |
// Save the excel file. | |
wb.Save(dataDir + "output.out.xls", SaveFormat.Excel97To2003); |
ワークシートの行を保護する
Aspose.Cells を使用すると、ワークシートの任意の行を簡単にロックできます。ここで、私たちは利用することができますApplyStyle()方法Aspose.Cells.Row申し込むクラススタイルワークシートの特定の行に。このメソッドは 2 つの引数を取ります。スタイルオブジェクトとスタイルフラグ適用された書式設定に関連するすべてのメンバーを持つオブジェクト。
次の例は、ワークシートの行を保護する方法を示しています。最初にワークシート内のすべてのセルのロックを解除してから、その最初の行をロックします。最後に、ワークシートを保護します。のスタイルオブジェクトにはブール値のプロパティが含まれています。ロックされています .設定できますロックされていますプロパティを true または false に設定して、スタイルフラグ物体。
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Create directory if it is not already present. | |
bool IsExists = System.IO.Directory.Exists(dataDir); | |
if (!IsExists) | |
System.IO.Directory.CreateDirectory(dataDir); | |
// Create a new workbook. | |
Workbook wb = new Workbook(); | |
// Create a worksheet object and obtain the first sheet. | |
Worksheet sheet = wb.Worksheets[0]; | |
// Define the style object. | |
Style style; | |
// Define the styleflag object. | |
StyleFlag flag; | |
// Loop through all the columns in the worksheet and unlock them. | |
for (int i = 0; i <= 255; i++) | |
{ | |
style = sheet.Cells.Columns[(byte)i].GetStyle(); | |
style.IsLocked = false; | |
flag = new StyleFlag(); | |
flag.Locked = true; | |
sheet.Cells.Columns[(byte)i].ApplyStyle(style, flag); | |
} | |
// Get the first row style. | |
style = sheet.Cells.Rows[0].GetStyle(); | |
// Lock it. | |
style.IsLocked = true; | |
// Instantiate the flag. | |
flag = new StyleFlag(); | |
// Set the lock setting. | |
flag.Locked = true; | |
// Apply the style to the first row. | |
sheet.Cells.ApplyRowStyle(0, style, flag); | |
// Protect the sheet. | |
sheet.Protect(ProtectionType.All); | |
// Save the excel file. | |
wb.Save(dataDir + "output.out.xls", SaveFormat.Excel97To2003); |
ワークシートの列を保護する
Aspose.Cells を使用すると、ワークシート内の任意の列を簡単にロックできます。ここで、私たちは利用することができますApplyStyle()方法Aspose.Cells.Column申し込むクラススタイルワークシートの特定の列に。このメソッドは 2 つの引数を取ります。スタイルオブジェクトとスタイルフラグ適用された書式設定に関連するすべてのメンバーを持つオブジェクト。
次の例は、ワークシートの列を保護する方法を示しています。最初にワークシート内のすべてのセルのロックを解除してから、その最初の列をロックします。最後に、ワークシートを保護します。のスタイルオブジェクトにはブール値のプロパティが含まれています。ロックされています .設定できますロックされていますプロパティを true または false に設定して、スタイルフラグ物体。
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Create directory if it is not already present. | |
bool IsExists = System.IO.Directory.Exists(dataDir); | |
if (!IsExists) | |
System.IO.Directory.CreateDirectory(dataDir); | |
// Create a new workbook. | |
Workbook wb = new Workbook(); | |
// Create a worksheet object and obtain the first sheet. | |
Worksheet sheet = wb.Worksheets[0]; | |
// Define the style object. | |
Style style; | |
// Define the styleflag object. | |
StyleFlag flag; | |
// Loop through all the columns in the worksheet and unlock them. | |
for (int i = 0; i <= 255; i++) | |
{ | |
style = sheet.Cells.Columns[(byte)i].GetStyle(); | |
style.IsLocked = false; | |
flag = new StyleFlag(); | |
flag.Locked = true; | |
sheet.Cells.Columns[(byte)i].ApplyStyle(style, flag); | |
} | |
// Get the first column style. | |
style = sheet.Cells.Columns[0].GetStyle(); | |
// Lock it. | |
style.IsLocked = true; | |
// Instantiate the flag. | |
flag = new StyleFlag(); | |
// Set the lock setting. | |
flag.Locked = true; | |
// Apply the style to the first column. | |
sheet.Cells.Columns[0].ApplyStyle(style, flag); | |
// Protect the sheet. | |
sheet.Protect(ProtectionType.All); | |
// Save the excel file. | |
wb.Save(dataDir + "output.out.xls", SaveFormat.Excel97To2003); |
ユーザーが範囲を編集できるようにする
次の例は、ユーザーが保護されたワークシートの範囲を編集できるようにする方法を示しています。
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Create directory if it is not already present. | |
bool IsExists = System.IO.Directory.Exists(dataDir); | |
if (!IsExists) | |
System.IO.Directory.CreateDirectory(dataDir); | |
// Instantiate a new Workbook | |
Workbook book = new Workbook(); | |
// Get the first (default) worksheet | |
Worksheet sheet = book.Worksheets[0]; | |
// Get the Allow Edit Ranges | |
ProtectedRangeCollection allowRanges = sheet.AllowEditRanges; | |
// Define ProtectedRange | |
ProtectedRange proteced_range; | |
// Create the range | |
int idx = allowRanges.Add("r2", 1, 1, 3, 3); | |
proteced_range = allowRanges[idx]; | |
// Specify the passoword | |
proteced_range.Password = "123"; | |
// Protect the sheet | |
sheet.Protect(ProtectionType.All); | |
// Save the Excel file | |
book.Save(dataDir + "protectedrange.out.xls"); |