HTMLWindow.Parent, propriété
Obtient l'objet parent immédiat d'un objet HTMLWindow.
Espace de noms : EnvDTE
Assembly : EnvDTE (dans EnvDTE.dll)
Syntaxe
'Déclaration
ReadOnly Property Parent As Window
Window Parent { get; }
property Window^ Parent {
Window^ get ();
}
abstract Parent : Window with get
function get Parent () : Window
Valeur de propriété
Type : EnvDTE.Window
Objet Window.
Notes
La propriété Parent retourne le parent immédiat de l'objet ou de la collection.
Exemples
public void CodeExample(DTE2 dte, AddIn addin)
{
// Make sure you have an open HTML document before running this example.
try
{
if (dte.ActiveDocument.ActiveWindow.Object is HTMLWindow)
{
HTMLWindow htmlwin;
string msg = "";
htmlwin = dte.ActiveDocument.ActiveWindow.Object as HTMLWindow;
// Show the related application object's name.
msg += "The application containing this HTMLWindow is " + htmlwin.DTE.Name;
// Show the HTMLWindow's parent object.
msg += "\nThe HTMLWindow's parent object is " + htmlwin.Parent.Type.ToString();
MessageBox.Show(msg);
}
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
}
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.
Voir aussi
Référence
Autres ressources
Comment : compiler et exécuter les exemples de code du modèle objet Automation