OutputWindowPane.TextDocument 속성
OutputWindowPane의 TextDocument 개체를 가져옵니다.
네임스페이스: EnvDTE
어셈블리: EnvDTE(EnvDTE.dll)
구문
‘선언
ReadOnly Property TextDocument As TextDocument
TextDocument TextDocument { get; }
property TextDocument^ TextDocument {
TextDocument^ get ();
}
abstract TextDocument : TextDocument with get
function get TextDocument () : TextDocument
속성 값
형식: EnvDTE.TextDocument
TextDocument 개체
설명
전체 문서의 영역이 읽기 전용이므로 이 속성 또는 EditPoint를 사용하여 문서를 수정할 수 없습니다. 문서를 수정하려면 CommandWindow의 멤버를 사용해야 합니다.
예제
Sub TextDocumentExample(ByVal dte As DTE2)
' Retrieve and show the Output window.
Dim outWin As OutputWindow = dte.ToolWindows.OutputWindow
outWin.Parent.AutoHides = False
outWin.Parent.Activate()
' Find the "Pane1" Output window pane; if it does not exist,
' create it.
Dim pane1 As OutputWindowPane
Try
pane1 = outWin.OutputWindowPanes.Item("Pane1")
Catch
pane1 = outWin.OutputWindowPanes.Add("Pane1")
Finally
pane1.Clear()
End Try
' Write 10 lines of text to Pane1.
Dim i As Integer
For i = 1 To 10
pane1.OutputString("Line " & i.ToString() & vbCrLf)
Next
' Retrieve the text from Pane1.
Dim doc As TextDocument = pane1.TextDocument
Dim sel As TextSelection = doc.Selection
sel.StartOfDocument()
sel.EndOfDocument(True)
MsgBox("Text in Pane1:" & vbCrLf & vbCrLf & sel.Text)
End Sub
public void TextDocumentExample(DTE2 dte)
{
// Retrieve and show the Output window.
OutputWindow outWin = dte.ToolWindows.OutputWindow;
outWin.Parent.AutoHides = false;
outWin.Parent.Activate();
// Find the "Pane1" Output window pane; if it does not exist,
// create it.
OutputWindowPane pane1 = null;
try
{
pane1 = outWin.OutputWindowPanes.Item("Pane1");
}
catch
{
pane1 = outWin.OutputWindowPanes.Add("Pane1");
}
finally
{
pane1.Clear();
}
// Write 10 lines of text to Pane1.
for (int i = 1; i <= 10; i++)
pane1.OutputString("Line " + i.ToString() + "\n");
// Retrieve the text from Pane1.
TextDocument doc = pane1.TextDocument;
TextSelection sel = doc.Selection;
sel.StartOfDocument(false);
sel.EndOfDocument(true);
MessageBox.Show("Text in Pane1:\n\n" + sel.Text);
}
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용를 참조하세요.