Partilhar via


Método IVsCommandWindow.ExecuteCommand (String)

 

Publicado: abril de 2016

Executa o comando especificado.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)

Sintaxe

int ExecuteCommand(
    string szCommand
)
int ExecuteCommand(
    String^ szCommand
)
abstract ExecuteCommand : 
        szCommand:string -> int
Function ExecuteCommand (
    szCommand As String
) As Integer

Parâmetros

  • szCommand
    [in] A seqüência de caracteres que contém o comando.

Valor de retorno

Type: System.Int32

Se o método for bem-sucedido, ele retorna S_OK.Se ele falhar, ele retorna um código de erro.

Comentários

Se o comando é inválido ou desabilitado o método informa o erro para o usuário e retorna S_OK.

Observe que o método retorna o controle ao chamador antes de realmente executou o comando: ExecuteCommand simplesmente envia uma mensagem do Windows.Quando o shell recebe a mensagem, ele executa o comando.

COM assinatura

De vsshell.idl:

HRESULT IVsCommandWindow::ExecuteCommand(
   [in, ref] LPCOLESTR szCommand
);

Consulte também

Interface IVsCommandWindow
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo