Compartilhar via


Método IVsWindowFrame.SetFramePos (VSSETFRAMEPOS, Guid, Int32, Int32, Int32, Int32)

 

Publicado: abril de 2016

Define a posição da janela.

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

Sintaxe

int SetFramePos(
    VSSETFRAMEPOS dwSFP,
    [InAttribute] ref Guid rguidRelativeTo,
    int x,
    int y,
    int cx,
    int cy
)
int SetFramePos(
    VSSETFRAMEPOS dwSFP,
    [InAttribute] Guid% rguidRelativeTo,
    int x,
    int y,
    int cx,
    int cy
)
abstract SetFramePos : 
        dwSFP:VSSETFRAMEPOS *
        rguidRelativeTo:Guid byref *
        x:int *
        y:int *
        cx:int *
        cy:int -> int
Function SetFramePos (
    dwSFP As VSSETFRAMEPOS,
    <InAttribute> ByRef rguidRelativeTo As Guid,
    x As Integer,
    y As Integer,
    cx As Integer,
    cy As Integer
) As Integer

Parâmetros

  • dwSFP
    [in] Posição cujos valores são obtidos a partir de quadros de VSSETFRAMEPOS enumeração.
  • rguidRelativeTo
    [in] Não usado (definido como null).
  • 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.

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 IVsWindowFrame::SetFramePos(
   [in] VSSETFRAMEPOS dwSFP,
   [in] REFGUID rguidRelativeTo,
   [in] int x,
   [in] int y,
   [in] int cx,
   [in] int cy
);

Consulte também

Interface IVsWindowFrame
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo