This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Creates a tool window of the specified type with the specified ID.
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
声明
Private Function CreateToolWindow ( _
    ByRef toolWindowType As Guid, _
    id As UInteger _
) As Integer Implements IVsToolWindowFactory.CreateToolWindow
用法
Dim instance As Package
Dim toolWindowType As Guid
Dim id As UInteger
Dim returnValue As Integer
returnValue = CType(instance, IVsToolWindowFactory).CreateToolWindow(toolWindowType, _
    id)
int IVsToolWindowFactory.CreateToolWindow(
    ref Guid toolWindowType,
    uint id
)
private:
virtual int CreateToolWindow(
    Guid% toolWindowType, 
    unsigned int id
) sealed = IVsToolWindowFactory::CreateToolWindow
private abstract CreateToolWindow : 
        toolWindowType:Guid byref * 
        id:uint32 -> int 
private override CreateToolWindow : 
        toolWindowType:Guid byref * 
        id:uint32 -> int 
JScript does not support explicit interface implementations.
Parameters
- toolWindowType
 Type: System.Guid%
 Type of the window to be created.
- id
 Type: System.UInt32
 Instance ID
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Implements
IVsToolWindowFactory.CreateToolWindow(Guid%, UInt32)
.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.