Proprietà ILayerContainer.Comments
Per ottenere i commenti contenuti in questo elemento (non i commenti collegati a).
Spazio dei nomi: Microsoft.VisualStudio.ArchitectureTools.Extensibility.Layer
Assembly: Microsoft.VisualStudio.ArchitectureTools.Extensibility.Layer (in Microsoft.VisualStudio.ArchitectureTools.Extensibility.Layer.dll)
Sintassi
'Dichiarazione
ReadOnly Property Comments As IEnumerable(Of ILayerComment)
IEnumerable<ILayerComment> Comments { get; }
property IEnumerable<ILayerComment^>^ Comments {
IEnumerable<ILayerComment^>^ get ();
}
abstract Comments : IEnumerable<ILayerComment>
function get Comments () : IEnumerable<ILayerComment>
Valore proprietà
Tipo: System.Collections.Generic.IEnumerable<ILayerComment>
Note
Questa proprietà ottiene i commenti contenute all'interno del contenitore e non a quelli che sono collegati.
Per ottenere i commenti associati a un elemento del livello, utilizzare:
ILayerModel model = diagram.GetLayerModel();
IEnumerable<ILayerComment> comments = model.Comments
.Where(comment => comment.Links.Any(link => link.Target == layerElement));
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.
Vedere anche
Riferimenti
Spazio dei nomi Microsoft.VisualStudio.ArchitectureTools.Extensibility.Layer
CreateComment