IVsOutputWindowPane Interface

Definition

Allows a VSPackage to manipulate a particular Output window pane.

public interface class IVsOutputWindowPane
public interface class IVsOutputWindowPane
__interface IVsOutputWindowPane
[System.Runtime.InteropServices.Guid("9B878A55-296A-404D-80C4-1468BB7CDC43")]
[System.Runtime.InteropServices.InterfaceType(1)]
public interface IVsOutputWindowPane
[System.Runtime.InteropServices.Guid("9B878A55-296A-404D-80C4-1468BB7CDC43")]
[System.Runtime.InteropServices.InterfaceType(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)]
public interface IVsOutputWindowPane
[<System.Runtime.InteropServices.Guid("9B878A55-296A-404D-80C4-1468BB7CDC43")>]
[<System.Runtime.InteropServices.InterfaceType(1)>]
type IVsOutputWindowPane = interface
[<System.Runtime.InteropServices.Guid("9B878A55-296A-404D-80C4-1468BB7CDC43")>]
[<System.Runtime.InteropServices.InterfaceType(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)>]
type IVsOutputWindowPane = interface
Public Interface IVsOutputWindowPane
Derived
Attributes

Remarks

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.

Methods

Activate()

Shows and activates the Output window pane.

Clear()

Removes all text from the Output window pane.

FlushToTaskList()

Causes any output messages that were added by means of a call to the OutputTaskItemString(String, VSTASKPRIORITY, VSTASKCATEGORY, String, Int32, String, UInt32, String) method to be added as tasks to the task list tool window.

GetName(String)

Returns the name of the window pane.

Hide()

Hides the Output window pane.

OutputString(String)

Writes text to the Output window pane.

OutputStringThreadSafe(String)

Writes text to the Output window pane.

OutputTaskItemString(String, VSTASKPRIORITY, VSTASKCATEGORY, String, Int32, String, UInt32, String)

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

OutputTaskItemStringEx(String, VSTASKPRIORITY, VSTASKCATEGORY, String, Int32, String, UInt32, String, String)

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

SetName(String)

Changes the existing name of the window pane.

Applies to