TextWindow.Panes, propriété
Obtient la collection de volets de l'objet TextWindow.
Espace de noms : EnvDTE
Assembly : EnvDTE (dans EnvDTE.dll)
Syntaxe
'Déclaration
ReadOnly Property Panes As TextPanes
TextPanes Panes { get; }
property TextPanes^ Panes {
TextPanes^ get ();
}
abstract Panes : TextPanes
function get Panes () : TextPanes
Valeur de propriété
Type : EnvDTE.TextPanes
Collection TextPanes.
Exemples
Sub PanesExample(ByVal dte As EnvDTE.DTE)
Dim twin As TextWindow
Dim panes As TextPanes
twin = dte.ActiveWindow.Object
panes = twin.Panes
MsgBox("The """ & twin.Parent.Caption & """ window contains " & _
Str(panes.Count) & " pane(s).")
End Sub
public void PanesExample(_DTE dte)
{
TextWindow twin;
TextPanes tps;
twin = (TextWindow)dte.ActiveWindow.Object;
tps = twin.Panes;
MessageBox.Show ("The \"" + twin.Parent.Caption + "\" window
contains " + tps.Count.ToString () + " pane(s).");
}
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, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.