IVsWindowPane.CreatePaneWindow Method
Creates a window pane.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Déclaration
Function CreatePaneWindow ( _
hwndParent As IntPtr, _
x As Integer, _
y As Integer, _
cx As Integer, _
cy As Integer, _
<OutAttribute> ByRef hwnd As IntPtr _
) As Integer
'Utilisation
Dim instance As IVsWindowPane
Dim hwndParent As IntPtr
Dim x As Integer
Dim y As Integer
Dim cx As Integer
Dim cy As Integer
Dim hwnd As IntPtr
Dim returnValue As Integer
returnValue = instance.CreatePaneWindow(hwndParent, _
x, y, cx, cy, hwnd)
int CreatePaneWindow(
IntPtr hwndParent,
int x,
int y,
int cx,
int cy,
out IntPtr hwnd
)
int CreatePaneWindow(
[InAttribute] IntPtr hwndParent,
[InAttribute] int x,
[InAttribute] int y,
[InAttribute] int cx,
[InAttribute] int cy,
[OutAttribute] IntPtr% hwnd
)
function CreatePaneWindow(
hwndParent : IntPtr,
x : int,
y : int,
cx : int,
cy : int,
hwnd : IntPtr
) : int
Parameters
hwndParent
Type: System.IntPtr[in] Handle to the parent window.
x
Type: System.Int32[in] Absolute x ordinate.
y
Type: System.Int32[in] Absolute y ordinate.
cx
Type: System.Int32[in] x ordinate relative to x.
cy
Type: System.Int32[in] y ordinate relative to y.
hwnd
Type: System.IntPtr%[out] Pointer to a handle to the new window pane.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsWindowPane::CreatePaneWindow(
[in] HWND hwndParent,
[in] int x,
[in] int y,
[in] int cx,
[in] int cy,
[out] HWND *hwnd);
Tells you when to create your window and who to parent your window to.
Permissions
- 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.