Proprietà Window2.Width
Ottiene o imposta la larghezza della finestra in unità carattere.
Spazio dei nomi: EnvDTE80
Assembly: EnvDTE80 (in EnvDTE80.dll)
Sintassi
'Dichiarazione
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)
Valore proprietà
Tipo: Int32
Larghezza della finestra in unità carattere.
Esempi
In questo esempio viene selezionata la prima finestra della raccolta Windows e ne viene visualizzata la relativa proprietà Width.
Per ulteriori informazioni sulla modalità di esecuzione di questo esempio come componente aggiuntivo, vedere Procedura: compilare ed eseguire gli esempi di codice del modello a oggetti di automazione.
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);
}
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per altre informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.