Sdílet prostřednictvím


ShapeElement.CreateDecorators – metoda

Vytvoří kolekci dekoratérů požadovaného typu.

Obor názvů:  Microsoft.VisualStudio.Modeling.Diagrams
Sestavení:  Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.0 (v Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.0.dll)

Syntaxe

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

Vrácená hodnota

Typ: System.Collections.Generic.List<Decorator>
Kolekce dekoratérů požadovaného typu.

Poznámky

Tato metoda volá InitializeDecorators() po vytvoření instance decorator prázdná kolekce.Podobně jako pole obrazce jsou lakýrnické instance podle typu, nikoli instance.

Příklady

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

Zabezpečení rozhraní .NET Framework

Viz také

Referenční dokumentace

ShapeElement Třída

Microsoft.VisualStudio.Modeling.Diagrams – obor názvů