ToolWindows.GetToolWindow, méthode
Permet à l'utilisateur de récupérer une fenêtre par son titre.
Espace de noms : EnvDTE80
Assembly : EnvDTE80 (dans EnvDTE80.dll)
Syntaxe
'Déclaration
Function GetToolWindow ( _
Name As String _
) As Object
Object GetToolWindow(
string Name
)
Object^ GetToolWindow(
String^ Name
)
abstract GetToolWindow :
Name:string -> Object
function GetToolWindow(
Name : String
) : Object
Paramètres
Name
Type : StringTitre de la fenêtre à récupérer.
Valeur de retour
Type : Object
Objet Window.
Exemples
Ce complément obtient la légende de la fenêtre Sortie, après l'avoir récupérée à l'aide de la méthode GetToolWindow. Pour plus d'informations sur l'exécution des exemples, 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)
GetToolWindow(_applicationObject)
End Sub
Sub GetToolWindow(ByVal dte As DTE2)
Dim win As OutputWindow
win = _applicationObject.ToolWindows.OutputWindow
Dim aStr As String = win.Parent.Caption
win = CType(_applicationObject.ToolWindows.GetToolWindow(aStr), _
OutputWindow)
MsgBox("The window caption, obtained via GetToolWindow method, _
is: " & vbCr & win.Parent.Caption)
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;
GetToolWindow (_applicationObject);
}
public void GetToolWindow (DTE2 dte)
{
Output win;
win = _applicationObject.ToolWindows.OutputWindow;
String aStr = win.Parent.Caption;
win =
(OutputWindow)_applicationObject.ToolWindows.GetToolWindow(aStr);
MessageBox.Show(("The window caption, obtained via GetToolWindow
method, is: " + "\n" + win.Parent.Caption);
}
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.