Sdílet prostřednictvím


IElement.OwnedComments – vlastnost

Získává připomínky obsažené v tomto prvku (nikoli k ní komentáře).

Obor názvů:  Microsoft.VisualStudio.Uml.Classes
Sestavení:  Microsoft.VisualStudio.Uml.Interfaces (v Microsoft.VisualStudio.Uml.Interfaces.dll)

Syntaxe

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

Hodnota vlastnosti

Typ: IEnumerable<IComment>

Poznámky

Chcete-li poznámky, které jsou propojeny k prvku, použijte:

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

Zabezpečení rozhraní .NET Framework

Viz také

Referenční dokumentace

IElement Rozhraní

Microsoft.VisualStudio.Uml.Classes – obor názvů