Window2.Width-Eigenschaft
Ruft die Breite des Fensters in Zeicheneinheiten ab oder legt sie fest.
Namespace: EnvDTE80
Assembly: EnvDTE80 (in EnvDTE80.dll)
Syntax
'Declaration
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)
Eigenschaftswert
Typ: Int32
Die Breite des Fensters in Zeicheneinheiten.
Beispiele
In diesem Beispiel wird das erste Fenster in der Windows-Auflistung ausgewählt und seine Width-Eigenschaft angezeigt.
Weitere Informationen zum Ausführen dieses Beispiels als Add-In finden Sie unter Gewusst wie: Kompilieren und Ausführen der Codebeispiele für das Automatisierungsobjektmodell.
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);
}
.NET Framework-Sicherheit
- Volle Vertrauenswürdigkeit für den unmittelbaren Aufrufer. Dieser Member kann von nur teilweise vertrauenswürdigem Code nicht verwendet werden. Weitere Informationen finden Sie unter Verwenden von Bibliotheken aus teilweise vertrauenswürdigem Code.