Propriedade Window.Width

Obtém ou define a largura da janela em unidades de caracteres.

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

Sintaxe

'Declaração
Property Width As Integer
    Get
    Set
int Width { get; set; }
property int Width {
    int get ();
    void set (int value);
}
abstract Width : int with get, set
function get Width () : int
function set Width (value : int)

Valor de propriedade

Tipo: System.Int32
A largura da janela em unidades de caracteres.

Exemplos

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

Segurança do .NET Framework

Consulte também

Referência

Window Interface

Namespace EnvDTE