VBA 在 CATIA 中发布
VBA Publication in CATIA
如何对零件进行发布?我使用了以下代码并在 return.
中得到 "The Method CreateReferenceFromName Failed" 或 "This object doesn't support this property or method" 错误
Set partDocument1 = CATIA.ActiveDocument
Set product1 = partDocument1.GetItem("PART1")
Set reference1 = product1.CreateReferenceFromName("PART1\Properties\DASH NUMBER")
答案比预期的要长。
我在上面使用了相同的代码,但必须将参数和关系发布到 link 用户定义的属性到可发布的资产。这是我能够创建此连接的唯一方法。
如何对零件进行发布?我使用了以下代码并在 return.
中得到 "The Method CreateReferenceFromName Failed" 或 "This object doesn't support this property or method" 错误Set partDocument1 = CATIA.ActiveDocument
Set product1 = partDocument1.GetItem("PART1")
Set reference1 = product1.CreateReferenceFromName("PART1\Properties\DASH NUMBER")
答案比预期的要长。
我在上面使用了相同的代码,但必须将参数和关系发布到 link 用户定义的属性到可发布的资产。这是我能够创建此连接的唯一方法。