OutputWindowPane.Clear 方法
從 OutputWindowPane 清除所有文字。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
Sub Clear
void Clear()
void Clear()
abstract Clear : unit -> unit
function Clear()
備註
從單一窗格中清除所有文字。
範例
Sub ClearExample(ByVal dte As DTE2)
' Retrieve the Output window.
Dim outputWin As OutputWindow = dte.ToolWindows.OutputWindow
' Find the "Test Pane" Output window pane; if it does not exist,
' create it.
Dim pane As OutputWindowPane
Try
pane = outputWin.OutputWindowPanes.Item("Test Pane")
Catch
pane = outputWin.OutputWindowPanes.Add("Test Pane")
End Try
' Show the Output window and activate the new pane.
outputWin.Parent.AutoHides = False
outputWin.Parent.Activate()
pane.Activate()
' Add a line of text to the new pane.
pane.OutputString("Some text." & vbCrLf)
If MsgBox("Clear the Output window pane?", MsgBoxStyle.YesNo) = _
MsgBoxResult.Yes Then
pane.Clear()
End If
End Sub
public void ClearExample(DTE2 dte)
{
// Retrieve the Output window.
OutputWindow outputWin = dte.ToolWindows.OutputWindow;
// Find the "Test Pane" Output window pane; if it doesn't exist,
// create it.
OutputWindowPane pane = null;
try
{
pane = outputWin.OutputWindowPanes.Item("Test Pane");
}
catch
{
pane = outputWin.OutputWindowPanes.Add("Test Pane");
}
// Show the Output window and activate the new pane.
outputWin.Parent.AutoHides = false;
outputWin.Parent.Activate();
pane.Activate();
// Add a line of text to the new pane.
pane.OutputString("Some text." + "\r\n");
if (MessageBox.Show("Clear the Output window pane?", "",
MessageBoxButtons.YesNo) == DialogResult.Yes)
pane.Clear();
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。