Sdílet prostřednictvím


Window2.Width – vlastnost

Získá nebo nastaví šířku okna v znakové jednotky.

Obor názvů:  EnvDTE80
Sestavení:  EnvDTE80 (v EnvDTE80.dll)

Syntaxe

'Deklarace
Property Width As Integer
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)

Hodnota vlastnosti

Typ: Int32
Šířka okna znakové jednotky.

Příklady

V tomto příkladu vybere v prvním okně Windows shromažďování a zobrazí jeho Width vlastnost.

Další informace o tom, jak spustit jako doplněk příklad viz Postupy: Kompilace a spuštění příkladů kódu objektu automatizace.

Imports EnvDTE
Imports EnvDTE80
Public Sub OnConnection(ByVal application As Object, _
 ByVal connectMode As ext_ConnectMode, ByVal addInInst As Object, _
 ByRef custom As Array) Implements IDTExtensibility2.OnConnection
    _applicationObject = CType(application, DTE2)
    _addInInstance = CType(addInInst, AddIn)
    WidthExample(_applicationObject)
End Sub
Sub WidthExample(ByVal dte As DTE2)
    Dim objWin As Window2
    objWin = CType(_applicationObject.Windows.Item(1), Window2)
    MsgBox("Window width of " & objWin.Caption & " is " & objWin.Width)
End Sub
using EnvDTE;
using EnvDTE80;
using System.Windows.Forms;
public void OnConnection(object application,
 ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
    _applicationObject = (DTE2)application;
    _addInInstance = (AddIn)addInInst;
    WidthExample(_applicationObject);
}
public void WidthExample(DTE2 dte)
{
    Window2 objWin;
    objWin = (Window2)_applicationObject.Windows.Item(1);
    MessageBox.Show("Window width of " + objWin.Caption + " is " 
+ objWin.Width);
}

Zabezpečení rozhraní .NET Framework

Viz také

Referenční dokumentace

Window2 Rozhraní

EnvDTE80 – obor názvů