Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
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.