Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello
I need to read the Assembly Weldment material name with iLogic, anyone know how I can achieve this?
Regards Lars
Solved! Go to Solution.
Hello
I need to read the Assembly Weldment material name with iLogic, anyone know how I can achieve this?
Regards Lars
Solved! Go to Solution.
Weldment document iProperties
Dim oDoc As Document
oDoc = ThisApplication.ActiveDocument
oMatl = oDoc.PropertySets.Item("Design Tracking Properties").Item("Material").Value
Thankyou, but this don't read weldment material definition but regular document material?
Hi steen,
I think this should be what you're looking for.
I hope this helps.
Best of luck to you in all of your Inventor pursuits,
Curtis
http://inventortrenches.blogspot.com
DTP_PropertySet = ThisDoc.Document.PropertySets.Item("Design Tracking Properties") oWeldMatl = DTP_PropertySet.Item("Weld Material").Value MessageBox.Show(oWeldMatl, "iLogic")
Or this using @MechMachineMan 's example:
Dim oDoc As Document oDoc = ThisApplication.ActiveDocument oMatl = oDoc.PropertySets.Item("Design Tracking Properties").Item("Weld Material").Value MessageBox.Show(oMatl, "iLogic")
THANKYOU
It works 🙂