<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Add custom iProperty to BOM using API in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-custom-iproperty-to-bom-using-api/m-p/9625057#M137945</link>
    <description>&lt;P&gt;...even if it is very strange that I confirm what Xiaodong has already confirmed, I can confirm it as well &lt;span class="lia-unicode-emoji" title=":rolling_on_the_floor_laughing:"&gt;🤣&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I was needing exactly the same functionality in a development a few months ago, and I've been struggling like hell to add a custom column to the BOM without succeding. I have asked the Adsk guys and... Xiaodong confirmed me that it is not exposed &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Maybe we should make an idea on that? It looks like many users need this!!&lt;/P&gt;</description>
    <pubDate>Wed, 08 Jul 2020 20:57:42 GMT</pubDate>
    <dc:creator>freesbee</dc:creator>
    <dc:date>2020-07-08T20:57:42Z</dc:date>
    <item>
      <title>Add custom iProperty to BOM using API</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-custom-iproperty-to-bom-using-api/m-p/3278913#M137937</link>
      <description>&lt;P&gt;I would like to add a Custom iProperty to the BOM using API.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It would mimic the "Add custom iProperty columns" dialog.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jan 2012 13:21:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-custom-iproperty-to-bom-using-api/m-p/3278913#M137937</guid>
      <dc:creator>CalvinDay</dc:creator>
      <dc:date>2012-01-03T13:21:15Z</dc:date>
    </item>
    <item>
      <title>Re: Add custom iProperty to BOM using API</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-custom-iproperty-to-bom-using-api/m-p/3283135#M137938</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As I know, this is not currently supported. Sorry for this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://images.autodesk.com/flashassets/staticassets/images/autodesk_logo_signature.png" border="0" /&gt;&lt;/P&gt;
&lt;P&gt;Xiaodong Liang&lt;/P&gt;
&lt;P&gt;Developer Technical Services&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jan 2012 06:18:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-custom-iproperty-to-bom-using-api/m-p/3283135#M137938</guid>
      <dc:creator>xiaodong_liang</dc:creator>
      <dc:date>2012-01-06T06:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: Add custom iProperty to BOM using API</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-custom-iproperty-to-bom-using-api/m-p/3283601#M137939</link>
      <description>&lt;P&gt;This is how I made it work for myselft.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sub AddProp(oCompDef As ComponentDefinition)&lt;BR /&gt;&lt;BR /&gt;Dim oDesc As Property&lt;BR /&gt;&lt;BR /&gt;On Error Resume Next&lt;BR /&gt;' add here the iprop custom you want... as many as you need.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Set oDesc = oCompDef.Document.PropertySets.Item(4).Add("Valeur", "Titre")&lt;BR /&gt;Set oDesc = oCompDef.Document.PropertySets.Item(4).Add("Valeur2", "Titre2")&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;On Error GoTo 0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;End Sub&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Public Sub BOMQuery()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Set a reference to the assembly document.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' This assumes an assembly document is active.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oDoc As AssemblyDocument&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oDoc = ThisApplication.ActiveDocument&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Set a reference to the BOM&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oBOM As BOM&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oBOM = oDoc.ComponentDefinition.BOM&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Set whether first level only or all levels.&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oBOM.StructuredViewFirstLevelOnly = False&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Make sure that the structured view is enabled.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; oBOM.StructuredViewEnabled = True&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Set a reference to the "Structured" BOMView&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oBOMView As BOMView&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oBOMView = oBOM.BOMViews.Item("Structured")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Initialize the tab for ItemNumber&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim ItemTab As Long&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ItemTab = -3&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Call QueryBOMRowProperties(oBOMView.BOMRows, ItemTab)&lt;BR /&gt;End Sub&lt;BR /&gt;&lt;BR /&gt;Private Sub QueryBOMRowProperties(oBOMRows As BOMRowsEnumerator, ItemTab As Long)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ItemTab = ItemTab + 3&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Iterate through the contents of the BOM Rows.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim i As Long&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; For i = 1 To oBOMRows.Count&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Get the current row.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oRow As BOMRow&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oRow = oBOMRows.Item(i)&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Set a reference to the primary ComponentDefinition of the row&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oCompDef As ComponentDefinition&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oCompDef = oRow.ComponentDefinitions.Item(1)&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If TypeOf oCompDef Is VirtualComponentDefinition Then&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Else&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Call AddProp(oCompDef)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Recursively iterate child rows if present.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Not oRow.ChildRows Is Nothing Then&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Call QueryBOMRowProperties(oRow.ChildRows, ItemTab)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Next&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ItemTab = ItemTab - 3&lt;BR /&gt;End Sub&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jan 2012 15:01:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-custom-iproperty-to-bom-using-api/m-p/3283601#M137939</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-01-06T15:01:42Z</dc:date>
    </item>
    <item>
      <title>Re: Add custom iProperty to BOM using API</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-custom-iproperty-to-bom-using-api/m-p/3284647#M137940</link>
      <description>&lt;P&gt;I was trying to add a custom property to a DrawingBOM automatically since I already have the iProperties in the placed parts.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I ended up doing was to change the style library where the custom I properties are already in the Partslist style.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once that was done, just placing the BOM on the drawing showed the corrct columns. However, you do have to run the Inventor Project Editor from the Windows Start menu in order to create a project where you can read/write to the style library.&lt;/P&gt;</description>
      <pubDate>Sat, 07 Jan 2012 18:35:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-custom-iproperty-to-bom-using-api/m-p/3284647#M137940</guid>
      <dc:creator>CalvinDay</dc:creator>
      <dc:date>2012-01-07T18:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: Add custom iProperty to BOM using API</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-custom-iproperty-to-bom-using-api/m-p/3285105#M137941</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As what I understood on the original question, what I meant was: current Inventor API has not exposed the BOM.Columns. So we cannot add a custom column like the UI does (please see attached snapshot). Of course, if the original question is just to add properties to the parts /sub-assemblies, your code is helpful. But these custom iProperties cannot be listed in BOM view until you add them manually by UI.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the question is&amp;nbsp;to add the columns in the final Excel table exported from BOM (by UI or API), you could open the Excel file and add column by Excel API.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://images.autodesk.com/flashassets/staticassets/images/autodesk_logo_signature.png" border="0" /&gt;&lt;/P&gt;
&lt;P&gt;Xiaodong Liang&lt;/P&gt;
&lt;P&gt;Developer Technical Services&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2012 07:46:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-custom-iproperty-to-bom-using-api/m-p/3285105#M137941</guid>
      <dc:creator>xiaodong_liang</dc:creator>
      <dc:date>2012-01-09T07:46:26Z</dc:date>
    </item>
    <item>
      <title>Re: Add custom iProperty to BOM using API</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-custom-iproperty-to-bom-using-api/m-p/3285117#M137943</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you referring to the ability in Drawing document&amp;nbsp;like the attached snapshot? If yes, please refer to the code below. It addes one column named "aaa" and added the corresponding value from the iProperties of the part.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Public Sub test()&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Dim oPartsList As PartsList&lt;BR /&gt;Set oPartsList = ThisApplication.ActiveDocument.SelectSet(1)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;the value of the rows will be&amp;nbsp;filled in automatically&lt;/P&gt;
&lt;P&gt;oPartsList.PartsListColumns.Add kCustomProperty, , "aaa"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;End Sub&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2012 08:13:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-custom-iproperty-to-bom-using-api/m-p/3285117#M137943</guid>
      <dc:creator>xiaodong_liang</dc:creator>
      <dc:date>2012-01-09T08:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: Add custom iProperty to BOM using API</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-custom-iproperty-to-bom-using-api/m-p/9603964#M137944</link>
      <description>&lt;P&gt;Community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have searched the forums and the 2019 API help, but still have not found a way to use the API to add a column to the BOM.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Has this support been added in Inventor 2021?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am performing a BOM sort using a custom iProperty. If the iProperty column is missing in the BOM, the sort fails. I can error trap for that, but it would be great if I could add the missing iProperty column before sorting.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have also searched forums/Help to determine if a custom iProperty column exists in a BOM, but have been unsuccessful. That way I could trap before an error occurs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any updates and assistance would be appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jerry&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jun 2020 15:27:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-custom-iproperty-to-bom-using-api/m-p/9603964#M137944</guid>
      <dc:creator>JBerns</dc:creator>
      <dc:date>2020-06-26T15:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: Add custom iProperty to BOM using API</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-custom-iproperty-to-bom-using-api/m-p/9625057#M137945</link>
      <description>&lt;P&gt;...even if it is very strange that I confirm what Xiaodong has already confirmed, I can confirm it as well &lt;span class="lia-unicode-emoji" title=":rolling_on_the_floor_laughing:"&gt;🤣&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I was needing exactly the same functionality in a development a few months ago, and I've been struggling like hell to add a custom column to the BOM without succeding. I have asked the Adsk guys and... Xiaodong confirmed me that it is not exposed &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Maybe we should make an idea on that? It looks like many users need this!!&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jul 2020 20:57:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-custom-iproperty-to-bom-using-api/m-p/9625057#M137945</guid>
      <dc:creator>freesbee</dc:creator>
      <dc:date>2020-07-08T20:57:42Z</dc:date>
    </item>
    <item>
      <title>Re: Add custom iProperty to BOM using API</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-custom-iproperty-to-bom-using-api/m-p/9876557#M137946</link>
      <description>&lt;P&gt;A little late, but here is an idea for this:&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/inventor-ideas/more-api-control-over-the-bom/idi-p/6488790" target="_blank" rel="noopener"&gt;More API Control over the BOM&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS, can Message 6 by&amp;nbsp;&lt;SPAN&gt;Xiaodong&amp;nbsp;please be un-marked as the solution? It's answering a question by a different user about a completely different topic from the original post. (tagging&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9248770"&gt;@CGBenner&lt;/a&gt;, I assume you're the right guy to notify of this, as our most honorable Community Manager?)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Nov 2020 21:44:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-custom-iproperty-to-bom-using-api/m-p/9876557#M137946</guid>
      <dc:creator>DRoam</dc:creator>
      <dc:date>2020-11-17T21:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: Add custom iProperty to BOM using API</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-custom-iproperty-to-bom-using-api/m-p/9876575#M137947</link>
      <description>&lt;P&gt;...oh, too bad to hear: only 12 votes right now &lt;span class="lia-unicode-emoji" title=":crying_face:"&gt;😢&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Maybe that is because the idea is not that "specific"?&lt;/P&gt;&lt;P&gt;So I will start promoting it... now that instance properties will come out I have a free slot in the list of ideas that I support and promote &lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank you &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1171223"&gt;@DRoam&lt;/a&gt; for finding it out!!&lt;/P&gt;</description>
      <pubDate>Tue, 17 Nov 2020 22:03:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-custom-iproperty-to-bom-using-api/m-p/9876575#M137947</guid>
      <dc:creator>freesbee</dc:creator>
      <dc:date>2020-11-17T22:03:19Z</dc:date>
    </item>
  </channel>
</rss>

