ShapeElement.CreateDecorators 方法
建立一系列的圖形類型的裝飾。
命名空間: Microsoft.VisualStudio.Modeling.Diagrams
組件: Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0 (在 Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。