TextPane.Width Property
Gets the width of the pane in character units.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
ReadOnly Property Width As Integer
int Width { get; }
property int Width {
int get ();
}
abstract Width : int with get
function get Width () : int
Property Value
Type: System.Int32
The width of the pane in character units.
Examples
Sub WidthExample()
Dim objWin As Window
objWin = DTE.Windows.Item(1)
MsgBox("Window width: " & objWin.Width)
End Sub
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.