Método IVsWindowFrameNotify3.OnMove (Int32, Int32, Int32, Int32)
Publicado: abril de 2016
Notifica o VSPackage que uma janela está sendo movida.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (em Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Sintaxe
int OnMove(
int x,
int y,
int w,
int h
)
int OnMove(
int x,
int y,
int w,
int h
)
abstract OnMove :
x:int *
y:int *
w:int *
h:int -> int
Function OnMove (
x As Integer,
y As Integer,
w As Integer,
h As Integer
) As Integer
Parâmetros
- X
[in] Nova posição horizontal.
- Y
[in] Nova posição vertical.
- W
[in] Nova largura da janela.
- H
[in] Nova altura da 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 vsshell80.idl:
HRESULT IVsWindowFrameNotify3::OnMove(
[in] int x,
[in] int y,
[in] int w,
[in] int h
);
Consulte também
Interface IVsWindowFrameNotify3
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo