WorkbookBase.CustomViews 属性

获取一个 Microsoft.Office.Interop.Excel.CustomViews 集合,该集合表示工作簿的所有自定义视图。

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

语法

声明
Public ReadOnly Property CustomViews As CustomViews
    Get
public CustomViews CustomViews { get; }

属性值

类型:Microsoft.Office.Interop.Excel.CustomViews
Microsoft.Office.Interop.Excel.CustomViews 集合,表示工作簿的所有自定义视图。

示例

下面的代码示例使用 CustomViews 属性向当前工作簿添加一个名为“Summary”的自定义视图,然后以编程方式显示**“自定义视图”**对话框,以说明创建了新的自定义视图。

此示例针对的是文档级自定义项。

Private Sub AddCustomView()
    Me.CustomViews.Add("Summary", True, True)
    Me.Application.Dialogs( _
        Excel.XlBuiltInDialog.xlDialogCustomViews).Show()
End Sub
private void AddCustomView()
{
    this.CustomViews.Add("Summary", true, true);

    this.Application.Dialogs[Excel.XlBuiltInDialog.xlDialogCustomViews].Show(
        missing, missing, missing, missing, missing, missing, missing, missing,
        missing, missing, missing, missing, missing, missing, missing, missing,
        missing, missing, missing, missing, missing, missing, missing, missing,
        missing, missing, missing, missing, missing, missing);
}

.NET Framework 安全性

请参见

参考

WorkbookBase 类

Microsoft.Office.Tools.Excel 命名空间