ShapeElement.CreateDecorators, méthode
Crée une collection d'éléments décoratifs pour le type de forme.
Espace de noms : Microsoft.VisualStudio.Modeling.Diagrams
Assembly : Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.0 (dans Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.0.dll)
Syntaxe
'Déclaration
Protected Function CreateDecorators As List(Of Decorator)
protected List<Decorator> CreateDecorators()
Valeur de retour
Type : System.Collections.Generic.List<Decorator>
Collection d'éléments décoratifs pour le type de forme.
Notes
Cette méthode appelle InitializeDecorators() après l'instanciation d'une collection vide de décorateur. Comme les champs de forme, les éléments décoratifs sont par type instancié, pas par instance.
Exemples
public override global::System.Collections.Generic.IList<DslDiagrams::Decorator> Decorators
{
get
{
if(decorators == null)
{
decorators = CreateDecorators();
// fire this event to allow the diagram to initialize decorator mappings for this shape type.
if(DecoratorsInitialized != null)
{
DecoratorsInitialized(this, global::System.EventArgs.Empty);
}
}
return decorators;
}
}
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.