添加和删除对象功能的代码示例。
作为对象的模糊元素
作为整数的模糊IDX
作为对象的模糊属性
作为对象的模糊方法
'只需按ID加载元素 - 你必须
'替换模型中的有效ID
element = m_Repository.GetElementByID(246)
''创造一种新方法
method = element.Methods.AddNew(“newMethod”,“int”)
method.Update
element.Methods.Refresh
'现在循环遍历Element的方法 - 并删除我们的添加
对于idx = 0到element.Methods.Count-1
method = element.Methods.GetAt(idx)
Console.Writeline(method.Name)
如果(method.Name =“newMethod”)那么
element.Methods.Delete(IDX)
万一
下一个
'创建一个属性
attribute = element.attributes.AddNew(“NewAttribute”,“int”)
attribute.Update
element.attributes.Refresh
'循环并删除我们的新属性
对于idx = 0到element.attributes.Count-1
attribute = element.attributes.GetAt(idx)
Console.Writeline(attribute.Name)
If(attribute.Name =“NewAttribute”)然后
element.attributes.Delete(IDX)
万一
下一个