Window2.Width, propriété
Obtient ou définit la largeur de la fenêtre en nombre de caractères.
Espace de noms : EnvDTE80
Assembly : EnvDTE80 (dans EnvDTE80.dll)
Syntaxe
'Déclaration
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)
Valeur de propriété
Type : Int32
Largeur de la fenêtre en nombre de caractères.
Exemples
Cet exemple sélectionne la première fenêtre dans la collection Windows, et affiche sa propriété Width.
Pour plus d'informations sur l'exécution de cet exemple comme complément, consultez Comment : compiler et exécuter les exemples de code du modèle objet Automation.
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);
}
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, voir Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.