Click or drag to resize
IOutputWindowPane Interface
Represents a single pane in the Output window.

Namespace: Tvl.VisualStudio.OutputWindow.Interfaces
Assembly: Tvl.VisualStudio.OutputWindow.Interfaces (in Tvl.VisualStudio.OutputWindow.Interfaces.dll) Version: 2.0.1.0-dev
Syntax
public interface IOutputWindowPane

The IOutputWindowPane type exposes the following members.

Methods
  NameDescription
Public methodCode exampleActivate
Shows and activates the output window pane.
Public methodCode exampleHide
Hides the output window pane.
Public methodCode exampleWrite
Writes text to the output window.
Public methodCode exampleWriteLine
Writes a line of text to the output window.
Top
Properties
  NameDescription
Public propertyName
Gets or sets the display name of the window pane.
Top
Thread Safety
The Output Window Service extension implements the Write(String) and WriteLine(String) methods using a single call to OutputStringThreadSafe(String). No other assurances are made regarding the thread safety of methods in this interface.
See Also