TextPane.Width Property
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.
Gets the width of the pane in character units.
public:
property int Width { int get(); };
public:
property int Width { int get(); };
[System.Runtime.InteropServices.DispId(5)]
public int Width { [System.Runtime.InteropServices.DispId(5)] get; }
[<System.Runtime.InteropServices.DispId(5)>]
[<get: System.Runtime.InteropServices.DispId(5)>]
member this.Width : int
Public ReadOnly Property Width As Integer
Property Value
The width of the pane in character units.
- Attributes
Examples
Sub WidthExample()
Dim objWin As Window
objWin = DTE.Windows.Item(1)
MsgBox("Window width: " & objWin.Width)
End Sub