StatusBar.SetXYWidthHeight 方法
設定 StatusBar 中的 x、y、寬度和高度座標指示器。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
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
)
參數
- X
型別:System.Int32
必要項。要顯示在 StatusBar 中的 x 座標數。
- Y
型別:System.Int32
必要項。要顯示在 StatusBar 中的 y 座標數。
- Width
型別:System.Int32
必要項。要顯示在 StatusBar 中的寬度數。
- Height
型別:System.Int32
必要項。要顯示在 StatusBar 中的高度數。
範例
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
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。