05-11-2023
02:29 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
05-11-2023
02:29 PM
If you have a look at the previous linked article you will find that under "Design Tracking Properties" Property Set. I also converted that VBA retrieval code to ilogic so you can retrieve your own list whenever you like.
Dim partnumber As String = oPropsets.Item("Design Tracking Properties").Item("Part Number").Value
Get your own iproperties by retrieving Property and Property Sets:
Dim doc As Document = ThisApplication.ActiveDocument
For Each ps As PropertySet In doc.PropertySets
Logger.Info (ps.Name + " / " + ps.InternalName)
For Each p As [Property] In ps
Logger.Info (" " + p.Name + " /" + Str(p.PropId))
Next
Next
If this solved a problem, please click (accept) as solution.
Or if this helped you, please, click (like)
Regards
Alan
Or if this helped you, please, click (like)
Regards
Alan