iProperty PropertySets Cheat Sheet, Autodesk page is down

iProperty PropertySets Cheat Sheet, Autodesk page is down

mfoster9TD82
Advocate Advocate
157 Views
4 Replies
Message 1 of 5

iProperty PropertySets Cheat Sheet, Autodesk page is down

mfoster9TD82
Advocate
Advocate

I used to use this Autodesk page as a reference for iProperty PropertrySet names, but it's been down for a while.
https://www.autodesk.com/support/technical/article/caas/simplecontent/content/list-all-iproperties-a...

There was also a Mod The Machine one, but that is also down.
Mod the Machine: Accessing iProperties

Anyone have a good site that is still up for this?

0 Likes
Accepted solutions (2)
158 Views
4 Replies
Replies (4)
Message 2 of 5

Curtis_Waguespack
Consultant
Consultant
Accepted solution

Hi @mfoster9TD82, see these links. Hope that helps, Curtis


https://help.autodesk.com/view/INVNTOR/2026/ENU/?guid=PropertiesForDesignTrackingPropertiesEnum
https://help.autodesk.com/view/INVNTOR/2026/ENU/?guid=PropertiesForSummaryInformationEnum
https://help.autodesk.com/view/INVNTOR/2026/ENU/?guid=PropertiesForDocSummaryInformationEnum
https://help.autodesk.com/view/INVNTOR/2026/ENU/?guid=PropertiesForUserDefinedPropertiesEnum

use example, for others in the future:

Dim invDoc As Document
invDoc = ThisApplication.ActiveDocument

' Get the property sets
Dim DesignTrackPropSet As PropertySet = invDoc.PropertySets.Item("Design Tracking Properties")
Dim AppSummaryPropSet As PropertySet = invDoc.PropertySets.Item("Inventor Summary Information")
Dim DocSummaryPropSet As PropertySet = invDoc.PropertySets.Item("Inventor Document Summary Information")
Dim CustomPropSet As PropertySet = invDoc.PropertySets.Item("Inventor User Defined Properties")

'get a property value using the enum/prop ID Dim Author = AppSummaryPropSet.ItemByPropId(kAuthorSummaryInformation).Value MsgBox(Author)

 





EESignature

0 Likes
Message 3 of 5

CGBenner
Community Manager
Community Manager

@mfoster9TD82 

Hi, the technical document link that you shared, I believe, has in fact been removed.  I will attempt to tag @johnsonshiue to verify if this is the case, or if it's just a broken link.

Mod the Machine site seems to be working again today, can you please check if it is working for you?  It may have been down temporarily.  Thank you!

Did you find a post helpful? Then feel free to give likes to these posts!
Did your question get successfully answered? Then just click on the 'Accept solution' button.  Thanks and Enjoy!


Chris Benner
Community Manager

Message 4 of 5

mfoster9TD82
Advocate
Advocate

Yes, It looks like the Mod The Machine page is back up, thanks.

0 Likes
Message 5 of 5

WCrihfield
Mentor
Mentor
Accepted solution

Just dropping a couple more useful things in here, since the topic came back up.  Attached is a PDF of an Excel spreadsheet I created a couple years ago, which I use all the time as a quick reference.  Most of the data was gathered into Excel using an iLogic rule, then I manually formatted it and added a few notes of my own.  I also attached a text file containing the code from one of my external iLogic rules which gathers similar data from a document in Inventor and writes it to Excel, but with minimal formatting, and no custom notes included.  This version does not gather the 'values' of the iProperties, just their structural data, and value types (if they have a value).  There are a 2 or 3 properties which have an 'IPictureDisp' type value, when they have a value, but this just writes 'Picture' when the value is present, or 'Nothing' when it does not have a value.  For best results, run it while a 'saved' or 'opened' document is active in Inventor, rather than a 'new' or unsaved one.  You can customized or develop the code further if needed.

Wesley Crihfield

EESignature

(Not an Autodesk Employee)