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 セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。