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 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。