TextPane::Width Property

 

Gets the width of the pane in character units.

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

property int Width {
	int get();
}

Property Value

Type: System::Int32

The width of the pane 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: