Compartir a través de


IComment.AnnotatedElements (Propiedad)

Obtiene los elementos a los que se asocia el comentario.

Espacio de nombres:  Microsoft.VisualStudio.Uml.Classes
Ensamblado:  Microsoft.VisualStudio.Uml.Interfaces (en Microsoft.VisualStudio.Uml.Interfaces.dll)

Sintaxis

'Declaración
ReadOnly Property AnnotatedElements As IList(Of IElement)
IList<IElement> AnnotatedElements { get; }
property IList<IElement^>^ AnnotatedElements {
    IList<IElement^>^ get ();
}
abstract AnnotatedElements : IList<IElement>
function get AnnotatedElements () : IList<IElement>

Valor de propiedad

Tipo: System.Collections.Generic.IList<IElement>

Comentarios

Para obtener los comentarios vinculados a un elemento determinado, use:

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

Seguridad de .NET Framework

Vea también

Referencia

IComment Interfaz

Microsoft.VisualStudio.Uml.Classes (Espacio de nombres)