WorkbookBase.ReadOnly プロパティ
ブックが読み取り専用で開かれているかどうかを示す値を取得します。
名前空間: Microsoft.Office.Tools.Excel
アセンブリ: Microsoft.Office.Tools.Excel.v4.0.Utilities (Microsoft.Office.Tools.Excel.v4.0.Utilities.dll 内)
構文
'宣言
Public ReadOnly Property ReadOnly As Boolean
Get
public bool ReadOnly { get; }
プロパティ値
型: System.Boolean
ブックが読み取り専用で開かれている場合は true、それ以外の場合は false です。
解説
このプロパティは、SharePoint サイトにリンクされているリストでのみ使用されます。
例
次のコード例では、ReadOnlyRecommended プロパティが true で、ReadOnly プロパティが false である場合にメッセージを表示します。次に、ChangeFileAccess メソッドを呼び出し、ファイル アクセスを読み取り専用に設定するよう求めるプロンプトを表示します。
この例は、ドキュメント レベルのカスタマイズ用に作成されています。
Private Sub MakeWorkbookReadOnly()
If Me.ReadOnlyRecommended AndAlso Not Me.ReadOnly Then
' Change the access level of the document to read-only
' if the user clicks yes.
If MessageBox.Show("Set this document to read-only?", _
"Sample", MessageBoxButtons.YesNo) = DialogResult.Yes Then
Me.ChangeFileAccess(Excel.XlFileAccess.xlReadOnly, Notify:=False)
End If
End If
End Sub
private void MakeWorkbookReadOnly()
{
if (this.ReadOnlyRecommended && !this.ReadOnly)
{
// Change the access level of the document to read-only if the user
// clicks yes.
if (MessageBox.Show("Set this document to read-only?",
"Sample", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
this.ChangeFileAccess(Excel.XlFileAccess.xlReadOnly,
missing, false);
}
}
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。 このメンバーは、部分的に信頼されているコードから使用することはできません。 詳細については、「部分信頼コードからのライブラリの使用」を参照してください。