Compartilhar via


Método IVsWindowPane.CreatePaneWindow (IntPtr, Int32, Int32, Int32, Int32, IntPtr)

 

Cria um painel de janela.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)

Sintaxe

int CreatePaneWindow(
    IntPtr hwndParent,
    int x,
    int y,
    int cx,
    int cy,
    out IntPtr hwnd
)
int CreatePaneWindow(
    IntPtr hwndParent,
    int x,
    int y,
    int cx,
    int cy,
    [OutAttribute] IntPtr% hwnd
)
abstract CreatePaneWindow : 
        hwndParent:nativeint *
        x:int *
        y:int *
        cx:int *
        cy:int *
        hwnd:nativeint byref -> int
Function CreatePaneWindow (
    hwndParent As IntPtr,
    x As Integer,
    y As Integer,
    cx As Integer,
    cy As Integer,
    <OutAttribute> ByRef hwnd As IntPtr
) As Integer

Parâmetros

  • hwndParent
    [in] Identificador para a janela pai.
  • x
    [in] X absoluto ordenada.
  • y
    [in] Y absoluto ordenada.
  • cx
    [in] x ordenada em relação ao x.
  • cy
    [in] y ordenada em relação ao y.
  • hwnd
    [out] Ponteiro para uma alça para o novo painel de janela.

Valor de retorno

Type: System.Int32

Se o método for bem-sucedido, ele retorna S_OK.Se ele falhar, ele retorna um código de erro.

Comentários

COM assinatura

De vsshell.idl:

HRESULT IVsWindowPane::CreatePaneWindow(
   [in] HWND hwndParent,
   [in] int x,
   [in] int y,
   [in] int cx,
   [in] int cy,
   [out] HWND *hwnd);

Avisa quando criar a sua janela e quem deve ser pai de sua janela para.

Consulte também

Interface IVsWindowPane
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo