WorkbookBase.ReadOnlyRecommended 属性

获取或设置一个值,该值指示工作簿是否保存为建议的只读方式。

命名空间:  Microsoft.Office.Tools.Excel
程序集:  Microsoft.Office.Tools.Excel.v4.0.Utilities(在 Microsoft.Office.Tools.Excel.v4.0.Utilities.dll 中)

语法

声明
Public Property ReadOnlyRecommended As Boolean
public bool ReadOnlyRecommended { get; set; }

属性值

类型:System.Boolean
如果工作簿保存为建议的只读方式,则为 true;否则为 false。

备注

打开保存为建议的只读方式的工作簿时,Microsoft Office Excel 显示一条消息,建议以只读方式打开该工作簿。

使用 SaveAs 方法可更改此属性。

示例

下面的代码示例在 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,
                 false);
        }
    }
}

.NET Framework 安全性

请参见

参考

WorkbookBase 类

Microsoft.Office.Tools.Excel 命名空间