Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.

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

AAcheson_1-1683840294321.png

 

 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