Método IVsCommandWindowsCollection.OpenExistingOrCreateNewCommandWindow (UInt32, Int32, UInt32)
Publicado: abril de 2016
Abre uma janela de comando existente ou cria um novo.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (em Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Sintaxe
int OpenExistingOrCreateNewCommandWindow(
uint mode,
int fShow,
out uint puCookie
)
int OpenExistingOrCreateNewCommandWindow(
unsigned int mode,
int fShow,
[OutAttribute] unsigned int% puCookie
)
abstract OpenExistingOrCreateNewCommandWindow :
mode:uint32 *
fShow:int *
puCookie:uint32 byref -> int
Function OpenExistingOrCreateNewCommandWindow (
mode As UInteger,
fShow As Integer,
<OutAttribute> ByRef puCookie As UInteger
) As Integer
Parâmetros
- mode
[in] Um valor do tipo __COMMANDWINDOWMODE2.
- fShow
[in] Especifica se a janela de comando deve ser visível quando aberto ou criado.
- puCookie
[out] Um cookie para a janela de comando.Use quando fechar a janela Closee em outros métodos desta interface.
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
COM assinatura
De vsshell80.idl:
HRESULT OpenExistingOrCreateNewCommandWindow(
[in] COMMANDWINDOWMODE2 mode
[in] BOOL fShow,
[out] UINT * puCookie
);
Consulte também
Interface IVsCommandWindowsCollection
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo