Partager via


IElement.OwnedComments, propriété

Obtient les commentaires contenus dans cet élément (et non les commentaires associés à celui-ci).

Espace de noms :  Microsoft.VisualStudio.Uml.Classes
Assembly :  Microsoft.VisualStudio.Uml.Interfaces (dans Microsoft.VisualStudio.Uml.Interfaces.dll)

Syntaxe

'Déclaration
ReadOnly Property OwnedComments As IEnumerable(Of IComment)
IEnumerable<IComment> OwnedComments { get; }
property IEnumerable<IComment^>^ OwnedComments {
    IEnumerable<IComment^>^ get ();
}
abstract OwnedComments : IEnumerable<IComment>
function get OwnedComments () : IEnumerable<IComment>

Valeur de propriété

Type : System.Collections.Generic.IEnumerable<IComment>

Notes

Pour obtenir les commentaires associés à un élément, utilisez :

IEnumerable <IComment> comments = 
    store.AllInstances<IComment>() 
   .Where(eachComment => 
            eachComment.AnnotatedElements.Contains(element));

Sécurité .NET Framework

Voir aussi

Référence

IElement Interface

Microsoft.VisualStudio.Uml.Classes, espace de noms