CommandWindow.OutputString(String) Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Sendet eine Text Zeichenfolge an das Befehls Fenster.
public:
void OutputString(System::String ^ Text);
public:
void OutputString(Platform::String ^ Text);
void OutputString(std::wstring const & Text);
[System.Runtime.InteropServices.DispId(4)]
public void OutputString (string Text);
[<System.Runtime.InteropServices.DispId(4)>]
abstract member OutputString : string -> unit
Public Sub OutputString (Text As String)
Parameter
- Text
- String
Erforderlich. Die Textzeichen, die an das Fenster geschickt werden sollen.
- Attribute
Beispiele
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 http://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 http://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();
}
Hinweise
OutputString Fügt der Zeichenfolge nicht automatisch neue Zeilenzeichen hinzu. Wenn solche Zeichen in der Zeichenfolge enthalten sein sollen, müssen Sie Sie zu hinzufügen Text .