Interface OutputWindowPane
Representa um painel na janela de A saída.
Namespace: EnvDTE
Assembly: EnvDTE (em EnvDTE. dll)
Sintaxe
<GuidAttribute("FFC9DFC4-61CA-4B0C-83C2-0703A24F5C16")> _
Public Interface OutputWindowPane
Dim instance As OutputWindowPane
[GuidAttribute("FFC9DFC4-61CA-4B0C-83C2-0703A24F5C16")]
public interface OutputWindowPane
[GuidAttribute(L"FFC9DFC4-61CA-4B0C-83C2-0703A24F5C16")]
public interface class OutputWindowPane
public interface OutputWindowPane
Comentários
A janela de De saída exibe saída de texto.A janela de Saída pode ter um ou mais painéis, representados pelo objeto OutputWindowPane.Cada ferramenta IDE potencialmente usa um painel de janela de saída diferente.Painéis são selecionados com uma caixa Soltar-Para Baixo na parte superior da janela.Por exemplo, compilação erros ir para o o painel de De erros de compilação de, enquanto cada ferramenta de comando externa potencialmente vai para o seu próprio painel de janela de saída diferentes.
Exemplos
Sub OutputWindowPaneExample()
' Create a tool window handle for the Output window.
Dim win As Window = DTE.Windows.Item(EnvDTE.Constants.vsWindowKindOutput)
' Create handles to the Output window and its panes.
Dim OW As OutputWindow = win.Object
Dim OWp As OutputWindowPane
' Add a new pane to the Output window.
OWp = OW.OutputWindowPanes.Add("A New Pane")
' Add a line of text to the new pane.
OWp.OutputString("Some Text")
End Sub