Window::Width Property

 

Gets or sets the width of the window in character units.

Namespace:   EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

property int Width {
	int get();
	void set(int value);
}

Property Value

Type: System::Int32

The width of the window in character units.

Sub WidthExample()
   Dim objWin As Window
   objWin = DTE.Windows.Item(1)
   MsgBox("Window width: " & objWin.Width)
End Sub
Return to top
Show: