StatusBar.SetXYWidthHeight(Int32, Int32, Int32, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sets the x, y, width, and height coordinate indicators in the StatusBar.
public:
void SetXYWidthHeight(int X, int Y, int Width, int Height);
public:
void SetXYWidthHeight(int X, int Y, int Width, int Height);
void SetXYWidthHeight(int X, int Y, int Width, int Height);
[System.Runtime.InteropServices.DispId(7)]
public void SetXYWidthHeight (int X, int Y, int Width, int Height);
[<System.Runtime.InteropServices.DispId(7)>]
abstract member SetXYWidthHeight : int * int * int * int -> unit
Public Sub SetXYWidthHeight (X As Integer, Y As Integer, Width As Integer, Height As Integer)
Parameters
- Attributes
Examples
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