Udostępnij za pośrednictwem


Metoda ShapeElement.CreateDecorators —

Tworzy kolekcja dekoratorów dla typu kształtu.

Przestrzeń nazw:  Microsoft.VisualStudio.Modeling.Diagrams
Zestaw:  Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0 (w Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0.dll)

Składnia

'Deklaracja
Protected Function CreateDecorators As List(Of Decorator)
protected List<Decorator> CreateDecorators()

Wartość zwracana

Typ: System.Collections.Generic.List<Decorator>
Kolekcja dekoratorów dla typu kształtu.

Uwagi

Ta metoda wymaga InitializeDecorators() po uruchamianiu tego pustej kolekcji dekorator.Podobnie jak pola kształtu dekoratorów są per typem skonkretyzowanym, nie poszczególnych wystąpień.

Przykłady

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; 
}
}

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

ShapeElement Klasa

Przestrzeń nazw Microsoft.VisualStudio.Modeling.Diagrams