Método IVsStatusbar.SetXYWH (Object, Object, Object, Object)
Publicado: abril de 2016
Exibe (x, y) caixa de posição e a largura e a altura dos elementos gráficos atuais na área de informações do editor da barra de status.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int SetXYWH(
[InAttribute] ref object pvX,
[InAttribute] ref object pvY,
[InAttribute] ref object pvW,
[InAttribute] ref object pvH
)
int SetXYWH(
[InAttribute] Object^% pvX,
[InAttribute] Object^% pvY,
[InAttribute] Object^% pvW,
[InAttribute] Object^% pvH
)
abstract SetXYWH :
pvX:Object byref *
pvY:Object byref *
pvW:Object byref *
pvH:Object byref -> int
Function SetXYWH (
<InAttribute> ByRef pvX As Object,
<InAttribute> ByRef pvY As Object,
<InAttribute> ByRef pvW As Object,
<InAttribute> ByRef pvH As Object
) As Integer
Parâmetros
- pvX
[in] Ponteiro para o local de ordenada x do canto superior esquerdo do gráfico atual.
- pvY
[in] Ponteiro para o local de ordenada y do canto superior esquerdo do gráfico atual.
- pvW
[in] Ponteiro para a largura do elemento gráfico atual.
- pvH
[in] Ponteiro para a altura do elemento gráfico atual.
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 IVsStatusbar::SetXYWH(
[in]VARIANT *pvX,
[in]VARIANT *pvY,
[in]VARIANT *pvW,
[in]VARIANT *pvH
);
Para todos os parâmetros, passe em null para ignorar os parâmetros.Para cada parâmetro, a VARIANTE deve ser VT_I2, VT_I4, VT_R4, ou VT_R8.
Consulte também
Interface IVsStatusbar
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo