Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Creates a window pane.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function CreatePaneWindow ( _
hwndParent As IntPtr, _
x As Integer, _
y As Integer, _
cx As Integer, _
cy As Integer, _
<OutAttribute> ByRef hwnd As IntPtr _
) As Integer
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
)
abstract CreatePaneWindow :
hwndParent:IntPtr *
x:int *
y:int *
cx:int *
cy:int *
hwnd:IntPtr byref -> int
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.
.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.