<?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: Creating User Parameters in Inventor in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12635361#M12627</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3950322"&gt;@chris&lt;/a&gt;.&amp;nbsp; I never had to worry about how the XML file was formatted or separated.&amp;nbsp; There is only one 'toggle' type option when exporting (KeysOnly or All).&amp;nbsp; The 'KeysOnly' option just means only export the parameters that are marked for export.&amp;nbsp; To mark a Parameter for export, just check the checkbox in the column labeled 'Export Parameter'.&amp;nbsp; We can also check (or uncheck) that box by code (&lt;A href="https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=Parameter_ExposedAsProperty" target="_blank" rel="noopener"&gt;Parameter.ExposedAsProperty&lt;/A&gt;).&amp;nbsp; So, if I want to control which parameters it will export, I either limit all the parameters to only the ones I want, like in a new document, or make sure that only the ones I want to export are set to export, by making sure that property is True for them.&amp;nbsp; Then use that line of code to export the parameters to an external XML file.&amp;nbsp; Then when working with another document that I want those parameters to be in (by code), I use that one line of code to import that XML file, and boom...all those parameters are now present in my document.&amp;nbsp; All the parameter names are the same, values are all still the same, the multi-value lists are preserved, the 'Key' checkbox is still checked, and the comments are still there in the new document.&amp;nbsp; The only setting that does not copy with each parameter is the checkbox setting for exporting that parameter.&amp;nbsp; It pretty sweet.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit:&amp;nbsp; Here is one possible example code though, just for something to work with.&amp;nbsp; At the top of the example is a line that might need to be in the 'Header' of the rule.&amp;nbsp; But only if you did not use certain terms within your rule, such as ThisDoc and others.&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;'AddReference "Autodesk.Inventor.Interop"
Dim oDoc As Document = ThisDoc.Document
Dim oParams As Inventor.Parameters = Nothing
If oDoc.DocumentType = DocumentTypeEnum.kPartDocumentObject OrElse _
	oDoc.DocumentType = DocumentTypeEnum.kAssemblyDocumentObject Then
	oParams = oDoc.ComponentDefinition.Parameters
ElseIf oDoc.DocumentType = DocumentTypeEnum.kDrawingDocumentObject Then
	oParams = oDoc.Parameters
End If
If oParams Is Nothing Then : Logger.Debug("Parameters Not Found") : Return : End If
Dim oUParams As UserParameters = oParams.UserParameters
For Each oUParam As UserParameter In oUParams
	If Not oUParam.ExposedAsProperty Then oUParam.ExposedAsProperty = True
Next 'oUParam
Dim sProjPath As String = ThisApplication.DesignProjectManager.ActiveDesignProject.WorkspacePath
Dim sDocName As String = ThisDoc.FileName(False)
Dim sXMLFileName As String = sProjPath &amp;amp; "\" &amp;amp; sDocName &amp;amp; ".xml"
iLogicVb.Automation.ParametersXmlSave(oDoc, sXMLFileName, XmlSaveOption.KeysOnly)&lt;/LI-CODE&gt;
&lt;P&gt;If this solved your problem, or answered your question, please click &lt;SPAN&gt;&lt;STRONG&gt; ACCEPT SOLUTION &lt;/STRONG&gt;&lt;/SPAN&gt;.&lt;BR /&gt;Or, if this helped you, please click (LIKE or KUDOS) &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 12 Mar 2024 15:25:41 GMT</pubDate>
    <dc:creator>WCrihfield</dc:creator>
    <dc:date>2024-03-12T15:25:41Z</dc:date>
    <item>
      <title>Creating User Parameters in Inventor</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12629286#M12613</link>
      <description>&lt;P&gt;Is there a way in iLogic to create a set of user-defined parameters within iLogi without first creating them in the Parameters window and then referring them in iLogic? I have a lot to create and I wanted to be able to copy/paste, re-order, ect. (which I can't currently do in the Parameters window).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just to clarify further what I am trying to do, I want to be able to have an easy way to create 10-30 user parameters for a "part" file, which in this case happens to just be vertical and horizontal offsets from the origin for the creation of a bunch of planes used in a skeleton model to control the insertion points of a handful of parts at the assembly level to control a General Arrangement assembly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't mind creating these in the parameter window in IV, I just thought there might be an easier way in iLogic, sort of like when you create a list of custom iproperties. I'd like the ability to edit the Parameter Name, Unit/type, Equation/value, and "comment text" if possible, otherwise the parameter name and value are fine.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="chris_0-1710007502252.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1335312i8E08CB54CC42D2EF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="chris_0-1710007502252.png" alt="chris_0-1710007502252.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Mar 2024 18:05:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12629286#M12613</guid>
      <dc:creator>chris</dc:creator>
      <dc:date>2024-03-09T18:05:07Z</dc:date>
    </item>
    <item>
      <title>Re: Creating User Parameters in Inventor</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12629325#M12614</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3950322"&gt;@chris&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a few links I put together for another post. These are methods to drive and create parameters via the Inventor API. Sticking all you parameter names in a list source from an excel list/ manual input and looping through the list will be a good way to create the parameters. Assigning values you could do through ilogic multilist method. Alternatively you could pick them up from an excel sheet but that would be more work and complication.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://modthemachine.typepad.com/my_weblog/2010/04/parameters-as-iproperties.html" target="_blank" rel="noopener nofollow noreferrer"&gt;Export iproperty from parameter&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://microconcepts.typepad.com/design_automation/2014/11/odoc-thisdocdocument-dim-oparams-as-parameters-if-odocdocumenttypeinventordocumenttypeenumkpartdocumentobject-t.html" target="_blank" rel="noopener nofollow noreferrer"&gt;Create Parameters using vb.net&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.autodesk.com/view/INVNTOR/2022/ENU/?guid=ParameterCreateUser_Sample" target="_blank" rel="noopener nofollow noreferrer"&gt;Create Parameter VBA Sample API Help&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.autodesk.com/view/INVNTOR/2022/ENU/?guid=Parameter" target="_blank" rel="noopener nofollow noreferrer"&gt;Parameter Object API Help&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Mar 2024 18:25:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12629325#M12614</guid>
      <dc:creator>A.Acheson</dc:creator>
      <dc:date>2024-03-09T18:25:25Z</dc:date>
    </item>
    <item>
      <title>Re: Creating User Parameters in Inventor</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12629350#M12615</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7946284"&gt;@A.Acheson&lt;/a&gt;&amp;nbsp;Thanks for the links, looking through now, I tried this one, but the code returned an error that I am not familiar with how to fix? (this is the 3rd link you provided)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="chris_0-1710010252741.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1335316i0EB02A6118C90D17/image-size/medium?v=v2&amp;amp;px=400" role="button" title="chris_0-1710010252741.png" alt="chris_0-1710010252741.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Mar 2024 18:50:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12629350#M12615</guid>
      <dc:creator>chris</dc:creator>
      <dc:date>2024-03-09T18:50:55Z</dc:date>
    </item>
    <item>
      <title>Re: Creating User Parameters in Inventor</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12629393#M12616</link>
      <description>&lt;P&gt;In iLogic there needs to be one main sub that will run when running the rule, when not explicitly stating subs the sub called "Main" is implied. If you want to use multiple subs you'll have to explicitly state one as Sub Main. So to solve this error you have two options, either replace "Public Sub CreateParameters()" with "Sub Main()" or remove&amp;nbsp;"Public Sub CreateParameters()" and "End Sub".&lt;/P&gt;&lt;P&gt;You can read more about this here:&amp;nbsp;&lt;A href="https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=GUID-32B66838-22E4-4A0A-B5BB-862350C76B36" target="_blank"&gt;https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=GUID-32B66838-22E4-4A0A-B5BB-862350C76B36&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Mar 2024 19:25:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12629393#M12616</guid>
      <dc:creator>mat_hijs</dc:creator>
      <dc:date>2024-03-09T19:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: Creating User Parameters in Inventor</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12629403#M12617</link>
      <description>&lt;P&gt;I see that your code is VBA (Visual Basic for Applications), so if you want to use it in iLogic you'll have to convert it to VB.Net or you'll get more errors. This code should work in iLogic:&lt;/P&gt;&lt;LI-CODE lang="visual-basic"&gt;Dim oPartDoc As PartDocument = ThisApplication.ActiveDocument
Dim oPartCompDef As PartComponentDefinition = oPartDoc.ComponentDefinition
Dim oUserParameters As UserParameters = oPartCompDef.Parameters.UserParameters
Dim oParameter As Parameter = oUserParameters.AddByExpression("NewParameter1", "20 mm", UnitsTypeEnum.kMillimeterLengthUnits)&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 09 Mar 2024 19:33:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12629403#M12617</guid>
      <dc:creator>mat_hijs</dc:creator>
      <dc:date>2024-03-09T19:33:23Z</dc:date>
    </item>
    <item>
      <title>Re: Creating User Parameters in Inventor</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12629485#M12618</link>
      <description>&lt;P&gt;Link two has a functioning parameter creation using vb.net which can be used in the iLogic environment. I would suggest to learn how to convert VBA sample to iLogic code because you can then use all of the API samples which unfortunately were only mostly provided in VBA format.&amp;nbsp;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8098075"&gt;@mat_hijs&lt;/a&gt;&amp;nbsp;provided some useful tips. Need any more just post it up. The main thing with VBA conversion is to call the sub routine by using sub Main or remove sub routines entirely. The next thing is drop the word "Set". You can actually declare and set the object in the same line in vb.net where as VBA needs two separate lines.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Mar 2024 02:19:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12629485#M12618</guid>
      <dc:creator>A.Acheson</dc:creator>
      <dc:date>2024-03-10T02:19:34Z</dc:date>
    </item>
    <item>
      <title>Re: Creating User Parameters in Inventor</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12629576#M12619</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8098075"&gt;@mat_hijs&lt;/a&gt;&amp;nbsp;Thank you, that worked for adding one parameter, I assumed I could just copy/paste line 4, making changes to the "NewParameter1" and the value, but when I did that it gave me an error, so I assumed there is more involved. What I am trying to do is be able to list out several Parameters like this (see image), but this obviously, returns errors.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On top of that, once I run the rule, if I come back to it to make a change to the first parameter value, instead of changing it, it creates a new one with a "_1".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Perhaps I'm over-thinking this, I just wanted a way to quickly list off a large amount of Parameters, so I could group and re-order them... just like the Inventor Parameters window should allow&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="chris_0-1710022396227.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1335345i154942D4EFA8BACF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="chris_0-1710022396227.png" alt="chris_0-1710022396227.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="chris_1-1710022441670.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1335346i0448B5BC854DECE4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="chris_1-1710022441670.png" alt="chris_1-1710022441670.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Mar 2024 22:14:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12629576#M12619</guid>
      <dc:creator>chris</dc:creator>
      <dc:date>2024-03-09T22:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: Creating User Parameters in Inventor</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12629622#M12620</link>
      <description>&lt;P&gt;Like the error says, you're trying to declare a variable that has already been declared. There are two ways around this, either you declare this variable once and set different values to that same variable like in this example:&lt;/P&gt;&lt;LI-CODE lang="visual-basic"&gt;Dim oPartDoc As PartDocument = ThisApplication.ActiveDocument
Dim oPartCompDef As PartComponentDefinition = oPartDoc.ComponentDefinition
Dim oUserParameters As UserParameters = oPartCompDef.Parameters.UserParameters
Dim oParameter As Parameter
oParameter = oUserParameters.AddByExpression("NewParameter1", "10 mm", UnitsTypeEnum.kMillimeterLengthUnits)
oParameter = oUserParameters.AddByExpression("NewParameter2", "20 mm", UnitsTypeEnum.kMillimeterLengthUnits)
oParameter = oUserParameters.AddByExpression("NewParameter3", "30 mm", UnitsTypeEnum.kMillimeterLengthUnits)&lt;/LI-CODE&gt;&lt;P&gt;Or you can declare a new variable for each parameter like in this example:&lt;/P&gt;&lt;LI-CODE lang="visual-basic"&gt;Dim oPartDoc As PartDocument = ThisApplication.ActiveDocument
Dim oPartCompDef As PartComponentDefinition = oPartDoc.ComponentDefinition
Dim oUserParameters As UserParameters = oPartCompDef.Parameters.UserParameters
Dim oParameter1 As Parameter = oUserParameters.AddByExpression("NewParameter1", "10 mm", UnitsTypeEnum.kMillimeterLengthUnits)
Dim oParameter2 As Parameter = oUserParameters.AddByExpression("NewParameter2", "20 mm", UnitsTypeEnum.kMillimeterLengthUnits)
Dim oParameter3 As Parameter = oUserParameters.AddByExpression("NewParameter3", "30 mm", UnitsTypeEnum.kMillimeterLengthUnits)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;If you want to make the code change the parameter value if it already exists and add it if it doesn't you'll first have to check if it exists. This is an example to do this for one parameter, but if you want to do this for multiple parameters you should probably write a function to do all this and then call this function for each parameter.&lt;/P&gt;&lt;LI-CODE lang="visual-basic"&gt;Dim oPartDoc As PartDocument = ThisApplication.ActiveDocument
Dim oPartCompDef As PartComponentDefinition = oPartDoc.ComponentDefinition
Dim oUserParameters As UserParameters = oPartCompDef.Parameters.UserParameters

Dim oParameter As Parameter
Try
	oParameter = Parameter.Param("NewParameter1")
	oParameter.Expression = "10 mm"
Catch
	oParameter = oUserParameters.AddByExpression("NewParameter1", "10 mm", UnitsTypeEnum.kMillimeterLengthUnits)
End Try&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 09 Mar 2024 23:10:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12629622#M12620</guid>
      <dc:creator>mat_hijs</dc:creator>
      <dc:date>2024-03-09T23:10:21Z</dc:date>
    </item>
    <item>
      <title>Re: Creating User Parameters in Inventor</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12629623#M12621</link>
      <description>&lt;P&gt;Also, as a general tip, when posting in this forum always try to add your code as a code snippet instead of a screenshot.&lt;/P&gt;</description>
      <pubDate>Sat, 09 Mar 2024 23:12:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12629623#M12621</guid>
      <dc:creator>mat_hijs</dc:creator>
      <dc:date>2024-03-09T23:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: Creating User Parameters in Inventor</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12629957#M12622</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8098075"&gt;@mat_hijs&lt;/a&gt;&amp;nbsp;Thanks for the help, unfortantly I don't know anything about writing functions, other than using the snippets in iLogic, I did however add your single "Try/Catch" example to multiple lines and it seems to work. I'm sure there's a way to write the code more efficiently, but this is working, so I'll run with it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oPartDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartDocument&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oPartCompDef&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartComponentDefinition&lt;/SPAN&gt; = &lt;SPAN&gt;oPartDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oUserParameters&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;UserParameters&lt;/SPAN&gt; = &lt;SPAN&gt;oPartCompDef&lt;/SPAN&gt;.&lt;SPAN&gt;Parameters&lt;/SPAN&gt;.&lt;SPAN&gt;UserParameters&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oParameter&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Parameter&lt;/SPAN&gt;

&lt;SPAN&gt;Try&lt;/SPAN&gt;
		&lt;SPAN&gt;oParameter&lt;/SPAN&gt; = &lt;SPAN&gt;Parameter&lt;/SPAN&gt;.&lt;SPAN&gt;Param&lt;/SPAN&gt;(&lt;SPAN&gt;"Length"&lt;/SPAN&gt;)
		&lt;SPAN&gt;'Live Dimension&lt;/SPAN&gt;
		&lt;SPAN&gt;oParameter&lt;/SPAN&gt;.&lt;SPAN&gt;Expression&lt;/SPAN&gt; = &lt;SPAN&gt;"333"&lt;/SPAN&gt;
&lt;SPAN&gt;Catch&lt;/SPAN&gt;
	&lt;SPAN&gt;'Initial Creation of Parameter&lt;/SPAN&gt;
	&lt;SPAN&gt;oParameter&lt;/SPAN&gt; = &lt;SPAN&gt;oUserParameters&lt;/SPAN&gt;.&lt;SPAN&gt;AddByExpression&lt;/SPAN&gt;(&lt;SPAN&gt;"Length"&lt;/SPAN&gt;, &lt;SPAN&gt;"60"&lt;/SPAN&gt;, &lt;SPAN&gt;UnitsTypeEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kDefaultDisplayLengthUnits&lt;/SPAN&gt;)
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Try&lt;/SPAN&gt;

&lt;SPAN&gt;Try&lt;/SPAN&gt;
		&lt;SPAN&gt;oParameter&lt;/SPAN&gt; = &lt;SPAN&gt;Parameter&lt;/SPAN&gt;.&lt;SPAN&gt;Param&lt;/SPAN&gt;(&lt;SPAN&gt;"Width"&lt;/SPAN&gt;)
		&lt;SPAN&gt;'Live Dimension&lt;/SPAN&gt;
		&lt;SPAN&gt;oParameter&lt;/SPAN&gt;.&lt;SPAN&gt;Expression&lt;/SPAN&gt; = &lt;SPAN&gt;"333"&lt;/SPAN&gt;
&lt;SPAN&gt;Catch&lt;/SPAN&gt;
	&lt;SPAN&gt;'Initial Creation of Parameter&lt;/SPAN&gt;
	&lt;SPAN&gt;oParameter&lt;/SPAN&gt; = &lt;SPAN&gt;oUserParameters&lt;/SPAN&gt;.&lt;SPAN&gt;AddByExpression&lt;/SPAN&gt;(&lt;SPAN&gt;"Width"&lt;/SPAN&gt;, &lt;SPAN&gt;"30"&lt;/SPAN&gt;, &lt;SPAN&gt;UnitsTypeEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kDefaultDisplayLengthUnits&lt;/SPAN&gt;)
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Try&lt;/SPAN&gt;

&lt;SPAN&gt;Try&lt;/SPAN&gt;
		&lt;SPAN&gt;oParameter&lt;/SPAN&gt; = &lt;SPAN&gt;Parameter&lt;/SPAN&gt;.&lt;SPAN&gt;Param&lt;/SPAN&gt;(&lt;SPAN&gt;"Height"&lt;/SPAN&gt;)
		&lt;SPAN&gt;'Live Dimension&lt;/SPAN&gt;
		&lt;SPAN&gt;oParameter&lt;/SPAN&gt;.&lt;SPAN&gt;Expression&lt;/SPAN&gt; = &lt;SPAN&gt;"333"&lt;/SPAN&gt;
&lt;SPAN&gt;Catch&lt;/SPAN&gt;
	&lt;SPAN&gt;'Initial Creation of Parameter&lt;/SPAN&gt;
	&lt;SPAN&gt;oParameter&lt;/SPAN&gt; = &lt;SPAN&gt;oUserParameters&lt;/SPAN&gt;.&lt;SPAN&gt;AddByExpression&lt;/SPAN&gt;(&lt;SPAN&gt;"Height"&lt;/SPAN&gt;, &lt;SPAN&gt;"20"&lt;/SPAN&gt;, &lt;SPAN&gt;UnitsTypeEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kDefaultDisplayLengthUnits&lt;/SPAN&gt;)
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Try&lt;/SPAN&gt;

&lt;SPAN&gt;Try&lt;/SPAN&gt;
		&lt;SPAN&gt;oParameter&lt;/SPAN&gt; = &lt;SPAN&gt;Parameter&lt;/SPAN&gt;.&lt;SPAN&gt;Param&lt;/SPAN&gt;(&lt;SPAN&gt;"Dia"&lt;/SPAN&gt;)
		&lt;SPAN&gt;'Live Dimension&lt;/SPAN&gt;
		&lt;SPAN&gt;oParameter&lt;/SPAN&gt;.&lt;SPAN&gt;Expression&lt;/SPAN&gt; = &lt;SPAN&gt;"25"&lt;/SPAN&gt;
&lt;SPAN&gt;Catch&lt;/SPAN&gt;
	&lt;SPAN&gt;'Initial Creation of Parameter&lt;/SPAN&gt;
	&lt;SPAN&gt;oParameter&lt;/SPAN&gt; = &lt;SPAN&gt;oUserParameters&lt;/SPAN&gt;.&lt;SPAN&gt;AddByExpression&lt;/SPAN&gt;(&lt;SPAN&gt;"Dia"&lt;/SPAN&gt;, &lt;SPAN&gt;"25"&lt;/SPAN&gt;, &lt;SPAN&gt;UnitsTypeEnum&lt;/SPAN&gt;.&lt;SPAN&gt;kDefaultDisplayLengthUnits&lt;/SPAN&gt;)
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;Try&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Mar 2024 06:41:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12629957#M12622</guid>
      <dc:creator>chris</dc:creator>
      <dc:date>2024-03-10T06:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: Creating User Parameters in Inventor</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12632259#M12623</link>
      <description>&lt;P&gt;Give this code a try, but be aware that this will only work for specific units etc.&lt;/P&gt;&lt;LI-CODE lang="visual-basic"&gt;Sub Main
	CreateOrChangeParameter("NewParameter1", "10 mm")
	CreateOrChangeParameter("NewParameter2", "20 mm")
	CreateOrChangeParameter("NewParameter3", "15 mm + 15 mm")
	CreateOrChangeParameter("NewParameter4", "NewParameter3")
End Sub

Public Sub CreateOrChangeParameter(ByVal sParameterName As String, ByVal sExpression As String)
	Dim oPartDoc As PartDocument = ThisApplication.ActiveDocument
	Dim oPartCompDef As PartComponentDefinition = oPartDoc.ComponentDefinition
	Dim oUserParameters As UserParameters = oPartCompDef.Parameters.UserParameters
	Dim oParameter As Parameter
	Try
		oParameter = Parameter.Param(sParameterName)
		oParameter.Expression = sExpression
	Catch
		oParameter = oUserParameters.AddByExpression(sParameterName, sExpression, UnitsTypeEnum.kDefaultDisplayLengthUnits)
	End Try
End Sub&lt;/LI-CODE&gt;&lt;P&gt;Also, this will not give you the ability to reorder, and I'm not aware of a way to be able to do that easily because parameters will be referenced in sketches, features, other parameters, ...&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2024 13:30:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12632259#M12623</guid>
      <dc:creator>mat_hijs</dc:creator>
      <dc:date>2024-03-11T13:30:14Z</dc:date>
    </item>
    <item>
      <title>Re: Creating User Parameters in Inventor</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12632670#M12624</link>
      <description>&lt;P&gt;How about just sort the list?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ParametersSort-01.jpg" style="width: 300px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1335786iDA3453A3696C7E97/image-size/large?v=v2&amp;amp;px=999" role="button" title="ParametersSort-01.jpg" alt="ParametersSort-01.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2024 15:59:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12632670#M12624</guid>
      <dc:creator>Frederick_Law</dc:creator>
      <dc:date>2024-03-11T15:59:22Z</dc:date>
    </item>
    <item>
      <title>Re: Creating User Parameters in Inventor</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12635097#M12625</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3950322"&gt;@chris&lt;/a&gt;.&amp;nbsp; If this group of parameters you want to quickly create is stable (same ones each time), then why not simply create the ones you want manually in another part, export them to an XML file right from the Parameters dialog, then when you want to put them into another document, just import that XML file from the other document, which will create them all at once.&amp;nbsp; This can be done manually without any code, or it can also be cone by code fairly easily.&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;iLogicVb.Automation.ParametersXmlSave(oDoc, sXMLFileName, XmlSaveOption.KeysOnly)&lt;/LI-CODE&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;iLogicVb.Automation.ParametersXmlLoad(oDoc, sXMLFileName)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 12 Mar 2024 13:45:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12635097#M12625</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2024-03-12T13:45:03Z</dc:date>
    </item>
    <item>
      <title>Re: Creating User Parameters in Inventor</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12635243#M12626</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7812054"&gt;@WCrihfield&lt;/a&gt;&amp;nbsp;I was not aware that you could do that. Would you happen to have an example of what you are talking about and how that XML file should be formatted or separated?&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2024 14:44:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12635243#M12626</guid>
      <dc:creator>chris</dc:creator>
      <dc:date>2024-03-12T14:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: Creating User Parameters in Inventor</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12635361#M12627</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3950322"&gt;@chris&lt;/a&gt;.&amp;nbsp; I never had to worry about how the XML file was formatted or separated.&amp;nbsp; There is only one 'toggle' type option when exporting (KeysOnly or All).&amp;nbsp; The 'KeysOnly' option just means only export the parameters that are marked for export.&amp;nbsp; To mark a Parameter for export, just check the checkbox in the column labeled 'Export Parameter'.&amp;nbsp; We can also check (or uncheck) that box by code (&lt;A href="https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=Parameter_ExposedAsProperty" target="_blank" rel="noopener"&gt;Parameter.ExposedAsProperty&lt;/A&gt;).&amp;nbsp; So, if I want to control which parameters it will export, I either limit all the parameters to only the ones I want, like in a new document, or make sure that only the ones I want to export are set to export, by making sure that property is True for them.&amp;nbsp; Then use that line of code to export the parameters to an external XML file.&amp;nbsp; Then when working with another document that I want those parameters to be in (by code), I use that one line of code to import that XML file, and boom...all those parameters are now present in my document.&amp;nbsp; All the parameter names are the same, values are all still the same, the multi-value lists are preserved, the 'Key' checkbox is still checked, and the comments are still there in the new document.&amp;nbsp; The only setting that does not copy with each parameter is the checkbox setting for exporting that parameter.&amp;nbsp; It pretty sweet.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit:&amp;nbsp; Here is one possible example code though, just for something to work with.&amp;nbsp; At the top of the example is a line that might need to be in the 'Header' of the rule.&amp;nbsp; But only if you did not use certain terms within your rule, such as ThisDoc and others.&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;'AddReference "Autodesk.Inventor.Interop"
Dim oDoc As Document = ThisDoc.Document
Dim oParams As Inventor.Parameters = Nothing
If oDoc.DocumentType = DocumentTypeEnum.kPartDocumentObject OrElse _
	oDoc.DocumentType = DocumentTypeEnum.kAssemblyDocumentObject Then
	oParams = oDoc.ComponentDefinition.Parameters
ElseIf oDoc.DocumentType = DocumentTypeEnum.kDrawingDocumentObject Then
	oParams = oDoc.Parameters
End If
If oParams Is Nothing Then : Logger.Debug("Parameters Not Found") : Return : End If
Dim oUParams As UserParameters = oParams.UserParameters
For Each oUParam As UserParameter In oUParams
	If Not oUParam.ExposedAsProperty Then oUParam.ExposedAsProperty = True
Next 'oUParam
Dim sProjPath As String = ThisApplication.DesignProjectManager.ActiveDesignProject.WorkspacePath
Dim sDocName As String = ThisDoc.FileName(False)
Dim sXMLFileName As String = sProjPath &amp;amp; "\" &amp;amp; sDocName &amp;amp; ".xml"
iLogicVb.Automation.ParametersXmlSave(oDoc, sXMLFileName, XmlSaveOption.KeysOnly)&lt;/LI-CODE&gt;
&lt;P&gt;If this solved your problem, or answered your question, please click &lt;SPAN&gt;&lt;STRONG&gt; ACCEPT SOLUTION &lt;/STRONG&gt;&lt;/SPAN&gt;.&lt;BR /&gt;Or, if this helped you, please click (LIKE or KUDOS) &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2024 15:25:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12635361#M12627</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2024-03-12T15:25:41Z</dc:date>
    </item>
    <item>
      <title>Re: Creating User Parameters in Inventor</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12635616#M12628</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7812054"&gt;@WCrihfield&lt;/a&gt;&amp;nbsp;I appreciate the help, but I just want to clarify and make sure I am hearing what you are saying.&lt;/P&gt;&lt;P&gt;First off, I have no idea what you are talking about, lol what I mean is this, (what I heard you say):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can create a blank xml file with something like (notepad). where I can create a list of parameters, similar to what I might do in Excel when linking to Excel. However, in Excel, I have to list the starting cell in order for Inventor to know how to import the data correctly, but you are saying there is no formatting for an XML import? (example) Parameter Name, Units, Value, ect?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Apologies if I am not understanding correctly, Below is an example of a list of user parameters I'd like to import, of course each would contain a units and value:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Base_A&lt;/P&gt;&lt;P&gt;Base_B&lt;/P&gt;&lt;P&gt;Base_C&lt;/P&gt;&lt;P&gt;Base_D&lt;/P&gt;&lt;P&gt;Base_E&lt;/P&gt;&lt;P&gt;Base_F&lt;/P&gt;&lt;P&gt;Base_G&lt;/P&gt;&lt;P&gt;Base_H&lt;/P&gt;&lt;P&gt;Base_J&lt;/P&gt;&lt;P&gt;Base_K&lt;/P&gt;&lt;P&gt;Base_L&lt;/P&gt;&lt;P&gt;Base_M&lt;/P&gt;&lt;P&gt;Base_N&lt;/P&gt;&lt;P&gt;Base_P&lt;/P&gt;&lt;P&gt;Base_Q&lt;/P&gt;&lt;P&gt;Base_R&lt;/P&gt;&lt;P&gt;Base_S&lt;/P&gt;&lt;P&gt;Base_T&lt;/P&gt;&lt;P&gt;Base_U&lt;/P&gt;&lt;P&gt;Base_V&lt;/P&gt;&lt;P&gt;Base_W&lt;/P&gt;&lt;P&gt;Base_X&lt;/P&gt;&lt;P&gt;Base_Y&lt;/P&gt;&lt;P&gt;Base_Z&lt;/P&gt;&lt;P&gt;Base_Dia01&lt;/P&gt;&lt;P&gt;Base_Dia02&lt;/P&gt;&lt;P&gt;Base_Dia03&lt;/P&gt;&lt;P&gt;Base_Dia04&lt;/P&gt;&lt;P&gt;Base_WeldGap&lt;/P&gt;&lt;P&gt;Base_Offset01&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2024 16:53:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12635616#M12628</guid>
      <dc:creator>chris</dc:creator>
      <dc:date>2024-03-12T16:53:51Z</dc:date>
    </item>
    <item>
      <title>Re: Creating User Parameters in Inventor</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12635691#M12629</link>
      <description>&lt;P&gt;Sorry if I was not very clear.&amp;nbsp; I have never created an XML file from scratch like you are talking about for the purpose of importing Parameters into an Inventor document.&amp;nbsp; The XML file gets created automatically for me when I export the parameters from an existing Inventor document.&amp;nbsp; Within the Parameters dialog of a model file, you will see something like the following in the lower left corner of that dialog.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="WCrihfield_0-1710263204871.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1336265i3AFDFDEEFB31B8E2/image-size/large?v=v2&amp;amp;px=999" role="button" title="WCrihfield_0-1710263204871.png" alt="WCrihfield_0-1710263204871.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;When I am doing this process manually, I start from an existing model document that already contains all the parameters in it that I want to reuse in another model document, then I click on the 'Export to XML' button (circled in red) above, or I click on the similar button out on the main ribbon by the same name, as seen in the image below.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="WCrihfield_1-1710263384318.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1336272i068490FF1F8EBAA8/image-size/large?v=v2&amp;amp;px=999" role="button" title="WCrihfield_1-1710263384318.png" alt="WCrihfield_1-1710263384318.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;When you click that button, a dialog opens wanting you to specify where to create / save the new XML file, and what to name it.&amp;nbsp; While that dialog is open, click on the Options button, then choose the 'Key Parameters Only' option (if that is the one you want), then proceed to create the new XML file.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="WCrihfield_2-1710263596956.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1336273iCDC385D33FFD2AA9/image-size/large?v=v2&amp;amp;px=999" role="button" title="WCrihfield_2-1710263596956.png" alt="WCrihfield_2-1710263596956.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The lines of code I showed you in Message 13 were for use within an iLogic rule only, and are for the same functionality as these manual methods shown above.&amp;nbsp; When you export an XML file this way, you can open that XML file that it created to review how it is formatted, but I have never had to mess with the 'contents' of one of these XML files before.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then, when I have some other model document open (the one I want to put those parameters into), I either use the button on the ribbon, or open the Parameters dialog, click on that 'Import from XML' button, choose the XML file that I exported from the other model document, and click OK.&amp;nbsp; Now all those parameters are in my current model document.&amp;nbsp; I would not want to completely, manually type out the whole contents of the XML file in a text editor for a lot of parameters.&lt;/P&gt;
&lt;P&gt;I have attached a very simple example XML file that was created this way from a simple test part.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2024 17:23:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12635691#M12629</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2024-03-12T17:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: Creating User Parameters in Inventor</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12636026#M12630</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7812054"&gt;@WCrihfield&lt;/a&gt;&amp;nbsp;Gotcha... now I know what you are talking about. I'm going to create a couple examples and see if I can come up with an XML template to use, thanks for the direction... I wouldn't have thought about that!&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2024 19:57:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/creating-user-parameters-in-inventor/m-p/12636026#M12630</guid>
      <dc:creator>chris</dc:creator>
      <dc:date>2024-03-12T19:57:53Z</dc:date>
    </item>
  </channel>
</rss>

