Package.GetOutputPane Method
Gets the requested output window.
Namespace: Microsoft.VisualStudio.Shell
Assemblies: Microsoft.VisualStudio.Shell.9.0 (in Microsoft.VisualStudio.Shell.9.0.dll)
Microsoft.VisualStudio.Shell (in Microsoft.VisualStudio.Shell.dll)
Microsoft.VisualStudio.Shell.10.0 (in Microsoft.VisualStudio.Shell.10.0.dll)
Syntax
'Declaration
Public Function GetOutputPane ( _
page As Guid, _
caption As String _
) As IVsOutputWindowPane
'Usage
Dim instance As Package
Dim page As Guid
Dim caption As String
Dim returnValue As IVsOutputWindowPane
returnValue = instance.GetOutputPane(page, _
caption)
public IVsOutputWindowPane GetOutputPane(
Guid page,
string caption
)
public:
IVsOutputWindowPane^ GetOutputPane(
Guid page,
String^ caption
)
member GetOutputPane :
page:Guid *
caption:string -> IVsOutputWindowPane
public function GetOutputPane(
page : Guid,
caption : String
) : IVsOutputWindowPane
Parameters
- page
Type: System.Guid
The GUID corresponding to the pane. (See VSConstants class for the GUIDs which correspond to output panes.)
- caption
Type: System.String
The caption to create if the pane does not exist.
Return Value
Type: Microsoft.VisualStudio.Shell.Interop.IVsOutputWindowPane
The IVsOutputWindowPane interface. Returns nulla null reference (Nothing in Visual Basic) in case of failure.
Remarks
The GetOutputPane method returns the requested output window pane. This method creates the pane if one does not exist.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.