Partilhar via


Método CommandWindow.OutputString

Envia uma seqüência de texto para o comando janela.

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

Sintaxe

'Declaração
Sub OutputString ( _
    Text As String _
)
void OutputString(
    string Text
)
void OutputString(
    String^ Text
)
abstract OutputString : 
        Text:string -> unit 
function OutputString(
    Text : String
)

Parâmetros

  • Text
    Tipo: System.String
    Obrigatório.Os caracteres de texto para enviar para a janela.

Comentários

OutputStringadiciona automaticamente caracteres de nova linha à seqüência de caracteres.Se você quiser tais caracteres na seqüência de caracteres, você deve adicioná-los para Text.

Exemplos

Sub CommandWinExample(ByVal dte As DTE)
    ' Get a reference to the Command window.
    Dim win As Window = _
    DTE.Windows.Item(EnvDTE.Constants.vsWindowKindCommandWindow)
    Dim CW As CommandWindow = win.Object

    ' Input a command into the Command window and execute it.
    CW.SendInput("nav https://www.microsoft.com", False)

    ' Insert some information text into the Command window.
    CW.OutputString("This URL takes you to the main Microsoft _
    website.")

    ' Clear the contents of the Command window.
    MsgBox("Clearing the Command window...")
    CW.Clear()
End Sub
void CommandWinExample(_DTE dte) 
{
    // Get a reference to the Command window.
    Window win =    
    dte.Windows.Item(EnvDTE.Constants.vsWindowKindCommandWindow);
    CommandWindow CW = (CommandWindow)win.Object;

    // Input a command into the Command window and execute it.
    CW.SendInput("nav https://www.microsoft.com", false);

    // Insert some information text into the Command window.
    CW.OutputString("This URL takes you to the main Microsoft 
    website.");

    // Clear the contents of the Command window.
    MessageBox.Show("Clearing the Command window...");
    CW.Clear();
}

Segurança do .NET Framework

Consulte também

Referência

CommandWindow Interface

Namespace EnvDTE

Outros recursos

Como: compilar e executar os exemplos de código de modelo de objeto de automação