Método StatusBar.SetXYWidthHeight
Define o x, y, largura e indicadores de altura coordenada na StatusBar.
Namespace: EnvDTE
Assembly: EnvDTE (em EnvDTE.dll)
Sintaxe
'Declaração
Sub SetXYWidthHeight ( _
X As Integer, _
Y As Integer, _
Width As Integer, _
Height As Integer _
)
void SetXYWidthHeight(
int X,
int Y,
int Width,
int Height
)
void SetXYWidthHeight(
int X,
int Y,
int Width,
int Height
)
abstract SetXYWidthHeight :
X:int *
Y:int *
Width:int *
Height:int -> unit
function SetXYWidthHeight(
X : int,
Y : int,
Width : int,
Height : int
)
Parâmetros
- X
Tipo: System.Int32
Obrigatório.O número de coordenada x para exibir o StatusBar.
- Y
Tipo: System.Int32
Obrigatório.O número de coordenada y para exibir o StatusBar.
- Width
Tipo: System.Int32
Obrigatório.O número de largura para exibir o StatusBar.
- Height
Tipo: System.Int32
Obrigatório.O número de altura para exibir o StatusBar.
Exemplos
Sub SetXYWidthHeightExample()
Dim SBar As StatusBar
SBar = DTE.StatusBar
SBar.SetXYWidthHeight(10, 20, 30, 40)
MsgBox("Notice the new X/Y Width/Height coordinates.")
End Sub
Segurança do .NET Framework
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiáveis.