Condividi tramite


Proprietà IElement.OwnedComments

Ottiene i commenti contenute in questo elemento (non commenti collegati a).

Spazio dei nomi:  Microsoft.VisualStudio.Uml.Classes
Assembly:  Microsoft.VisualStudio.Uml.Interfaces (in Microsoft.VisualStudio.Uml.Interfaces.dll)

Sintassi

'Dichiarazione
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>

Valore proprietà

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

Note

Per ottenere commenti collegati a un elemento, utilizzare:

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

Sicurezza di .NET Framework

Vedere anche

Riferimenti

IElement Interfaccia

Spazio dei nomi Microsoft.VisualStudio.Uml.Classes