主题:SolidWorks的宏如何转为VFP语句
SolidWorks的宏如何转为VFP语句
If Not custPropMgr Is Nothing Then
propNames = custPropMgr.GetNames '获取切割清单属性的数据全部名称并放入数组
If Not IsEmpty(propNames) Then
For Each vName In propNames
propName = vName
custPropMgr.Get2 propName, Value, resolvedValue '获取全部属性名称 ,数值和评估的值
Next vName
End If
End If
此语句如何转为VFP 代码?求帮助,不胜感激!
custPropMgr.Get2 propName, Value, resolvedValue