Método IVsOutputWindow.GetPane (Guid, IVsOutputWindowPane)
Retorna um painel de janela de saída, dada sua identificação GUID.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int GetPane(
[InAttribute] ref Guid rguidPane,
out IVsOutputWindowPane ppPane
)
int GetPane(
[InAttribute] Guid% rguidPane,
[OutAttribute] IVsOutputWindowPane^% ppPane
)
abstract GetPane :
rguidPane:Guid byref *
ppPane:IVsOutputWindowPane byref -> int
Function GetPane (
<InAttribute> ByRef rguidPane As Guid,
<OutAttribute> ByRef ppPane As IVsOutputWindowPane
) As Integer
Parâmetros
- rguidPane
[in] Identifica o painel da janela de saída.
- ppPane
[out] Ponteiro para o IVsOutputWindowPane do painel de janela de saída solicitado.Retorna null se o painel solicitado não existe.
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 vsshell.idl:
HRESULT IVsOutputWindow::GetPane(
[in] REFGUID rguidPane,
[out] IVsOutputWindowPane **ppPane
);
O IVsOutputWindowPane interface permite que um VSPackage manipular um painel de janela de saída específico.
Consulte também
Interface IVsOutputWindow
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo