Compartilhar via


Método Command.AddControl

Cria um controle persistente da barra de comandos para o comando.

Namespace:  EnvDTE
Assembly:  EnvDTE (em EnvDTE.dll)

Sintaxe

'Declaração
Function AddControl ( _
    Owner As Object, _
    Position As Integer _
) As Object
Object AddControl(
    Object Owner,
    int Position
)
Object^ AddControl(
    [InAttribute] Object^ Owner, 
    [InAttribute] int Position
)
abstract AddControl : 
        Owner:Object * 
        Position:int -> Object
function AddControl(
    Owner : Object, 
    Position : int
) : Object

Parâmetros

  • Owner
    Tipo: Object

    Obrigatório. Um objeto da CommandBar que o novo controle de barra de comandos deve ser adicionado.

  • Position
    Tipo: Int32

    Opcional. A posição do índice, começando em um, na barra de comandos para colocar o novo controle.

Valor de retorno

Tipo: Object
Um objeto CommandBarControl.

Comentários

O ambiente salva o controle e o posicionamento, tornando-o disponível de acordo com ContextUIGUIDs de comando quando o suplemento de contribuição não é carregado, ou suas respostas a QueryStatus Method quando é carregado.

Exemplos

Imports Microsoft.Office.Core
Sub AddControlExample()
   ' Before running, you must add a reference to
   ' Microsoft.VisualStudio.CommandBars. 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)
End Sub

Segurança do .NET Framework

Consulte também

Referência

Command Interface

Namespace EnvDTE