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 安全性

请参见

参考

WorkbookBase 类

Microsoft.Office.Tools.Excel 命名空间