共用方式為


Commands2.RemoveCommandBar 方法

移除以 AddCommandBar 方法所建立的命令列。

命名空間:  EnvDTE80
組件:  EnvDTE80 (在 EnvDTE80.dll 中)

語法

'宣告
Sub RemoveCommandBar ( _
    CommandBar As Object _
)
void RemoveCommandBar(
    Object CommandBar
)
void RemoveCommandBar(
    [InAttribute] Object^ CommandBar
)
abstract RemoveCommandBar : 
        CommandBar:Object -> unit
function RemoveCommandBar(
    CommandBar : Object
)

參數

  • CommandBar
    類型:Object

    必要項。 要移除的 CommandBar 物件。

備註

如果命令列是內建 (built-in) 於環境中,這個方法將會失敗。

範例

Imports Microsoft.VisualStudio.CommandBars
Sub RemoveCommandBarExample()
   ' Before running, you must add a reference to the Office 
   ' typelib to gain access to the CommandBar object. Also, for this 
   ' example to work correctly, there should be an add-in available 
   ' in the Visual Studio environment.
   Dim cmds As Commands
   Dim cmdobj As Command
   Dim customin, customout As Object
   Dim cmdbarobj As CommandBar
   Dim colAddins As AddIns

   ' Set references.
   colAddins = DTE.AddIns()
   cmds = DTE.Commands
   cmdobj = cmds.Item("File.NewFile")

   ' Create a toolbar and add the File.NewFile command to it.
   cmdbarobj = cmds.AddCommandBar("Mycmdbar", vsCommandBarType.vsCommandBarTypeToolbar)
   MsgBox("Commandbar name: " & cmdbarobj.Name)
   cmdobj.AddControl(cmdbarobj)
   cmds.AddNamedCommand(colAddins.Item(1), "MyCommand", "Button Text", "Some tooltip", True)
   cmds.RemoveCommandBar(cmdbarobj)

End Sub

.NET Framework 安全性

請參閱

參考

Commands2 介面

EnvDTE80 命名空間