共用方式為


WorkbookBase.CommandBars 屬性

定義

取得 Microsoft.Office.Core.CommandBars 物件,代表 Microsoft Office Excel 命令列。

public:
 property Microsoft::Office::Core::CommandBars ^ CommandBars { Microsoft::Office::Core::CommandBars ^ get(); };
public Microsoft.Office.Core.CommandBars CommandBars { get; }
member this.CommandBars : Microsoft.Office.Core.CommandBars
Public ReadOnly Property CommandBars As CommandBars

屬性值

代表 Microsoft Office Excel 命令行的 Microsoft.Office.Core.CommandBars 物件。

範例

下列程式代碼範例會 CommandBars 使用 屬性來刪除所有看不到的自定義命令行。 本範例假設目前的活頁簿內嵌在另一個應用程式中。

此範例適用於檔層級自定義。

private void WorkbookCommandBars()
{
    if (this.CommandBars != null)
    {
        for (int i = 1; i <= this.CommandBars.Count; i++)
        {
            if (!this.CommandBars[i].BuiltIn &&
                !this.CommandBars[i].Visible)
            {
                this.CommandBars[i].Delete();
            }
        }
    }
    else
    {
        MessageBox.Show("This workbook must be opened in another " +
            "application to use the CommandBars property.");
    }
}
Private Sub WorkbookCommandBars()
    If Not (Me.CommandBars Is Nothing) Then
        Dim i As Integer
        For i = 1 To Me.CommandBars.Count
            If Not Me.CommandBars(i).BuiltIn AndAlso Not _
                Me.CommandBars(i).Visible Then
                Me.CommandBars(i).Delete()
            End If
        Next i
    Else
        MsgBox("This workbook must be opened in another " & _
            "application to use the CommandBars property.")
    End If
End Sub

備註

當活頁簿內嵌在另一個應用程式中,並透過按兩下活頁簿來啟用活頁簿時,使用屬性搭配 Workbook 物件會傳回另一個應用程式內可用的 Excel 命令行集合。 在其他情況下,搭配 Workbook 物件使用這個屬性會傳 null回 。 沒有任何程序設計方式可以傳回附加至活頁簿的命令行集。 命令行與應用程式相關聯,而不是活頁簿。 這個屬性存在於活頁簿上,因此當 Excel 不是應用程式時,您可以存取 Excel 應用程式命令行。

適用於