ShapeElement.CreateDecorators 方法
建立圖案類型的裝飾項目集合。
命名空間: Microsoft.VisualStudio.Modeling.Diagrams
組件: Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.0 (在 Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.0.dll 中)
語法
'宣告
Protected Function CreateDecorators As List(Of Decorator)
protected List<Decorator> CreateDecorators()
傳回值
類型:System.Collections.Generic.List<Decorator>
圖案類型的裝飾項目集合。
備註
這個方法會產生空的裝飾項目集合之後呼叫 InitializeDecorators() 。 像圖案欄位, Decorator 是產生的每個型別,而不是每個執行個體。
範例
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;
}
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。