IVsOutputWindowPane Interface

 

Allows a VSPackage to manipulate a particular Output window pane.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)

[InterfaceTypeAttribute(1)]
[GuidAttribute("9B878A55-296A-404D-80C4-1468BB7CDC43")]
public interface class IVsOutputWindowPane

NameDescription
System_CAPS_pubmethodActivate()

Shows and activates the Output window pane.

System_CAPS_pubmethodClear()

Removes all text from the Output window pane.

System_CAPS_pubmethodFlushToTaskList()

Causes any output messages that were added by means of a call to the OutputTaskItemString method to be added as tasks to the task list tool window.

System_CAPS_pubmethodGetName(String^)

Returns the name of the window pane.

System_CAPS_pubmethodHide()

Hides the Output window pane.

System_CAPS_pubmethodOutputString(String^)

Writes text to the Output window pane.

System_CAPS_pubmethodOutputStringThreadSafe(String^)

Thread safe method to write text to the Output window pane.

System_CAPS_pubmethodOutputTaskItemString(String^, VSTASKPRIORITY, VSTASKCATEGORY, String^, Int32, String^, UInt32, String^)

Adds a string to the Output window and a corresponding item to the task list.

System_CAPS_pubmethodOutputTaskItemStringEx(String^, VSTASKPRIORITY, VSTASKCATEGORY, String^, Int32, String^, UInt32, String^, String^)

Adds a string to the Output window and a corresponding item to the task list.

System_CAPS_pubmethodSetName(String^)

Changes the existing name of the window pane.

This interface is implemented by a pane in the Output Window. An example pane is the Solution Build Output pane. All projects that participate in build output status messages to this pane.

Notes to Callers:

VSPackage implementers.

Return to top
Show: