DomainModel.CreateElement 方法
建立指定型別的項目。
命名空間: Microsoft.VisualStudio.Modeling
組件: Microsoft.VisualStudio.Modeling.Sdk.11.0 (在 Microsoft.VisualStudio.Modeling.Sdk.11.0.dll 中)
語法
'宣告
Public Overridable Function CreateElement ( _
partition As Partition, _
elementType As Type, _
propertyAssignments As PropertyAssignment() _
) As ModelElement
public virtual ModelElement CreateElement(
Partition partition,
Type elementType,
PropertyAssignment[] propertyAssignments
)
參數
- partition
型別:Microsoft.VisualStudio.Modeling.Partition
若要建立的項目所在的磁碟分割。
- elementType
型別:System.Type
DSL 定義中定義一個非抽象網域類別。
- propertyAssignments
型別:array<Microsoft.VisualStudio.Modeling.PropertyAssignment[]
指定為網域類別定義的網域屬性的值。
傳回值
型別:Microsoft.VisualStudio.Modeling.ModelElement
ModelElement 所建立。
備註
這個方法很適合用來產生的程式碼。 在一般的程式設計中,使用網域類別的建構函式。
本範例假設 DSL 的定義最小的語言 DSL] 方案範本。
範例
MyDslDomainModel dm = ...;
PropertyAssignment nameProperty =
new PropertyAssignment(ExampleElement.NameDomainPropertyId, "element1");
ExampleElement element = dm.CreateElement(
dm.Store.DefaultPartition,
typeof(ExampleElement),
new PropertyAssignment[] {nameProperty}
) as ExampleElement;
下列範例會具有相同的效果:
ExampleElement element1 = new ExampleElement(dm.Store);
element1.Name = "element1";
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。
請參閱
參考
Microsoft.VisualStudio.Modeling 命名空間