Sdílet prostřednictvím


ShapeElement.CreateDecorators – metoda

Vytvoří kolekci sklenářské pro typ obrazce.

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

Syntaxe

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

Vrácená hodnota

Typ: System.Collections.Generic.List<Decorator>
Sklenářské pro obrazec Typ kolekce.

Poznámky

Tato metoda volá po konkretizaci prázdné decorator kolekci InitializeDecorators().Podobně jako pole obrazce jsou sklenářské vytvořenou instanci na typu, nebudou 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ů