<?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: [iLogic] Control Position of Parts List in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/5550147#M138528</link>
    <description>&lt;PRE&gt;Imports System.Windows.Forms

Sub Main()
Dim doc As DrawingDocument
    doc = ThisApplication.ActiveDocument

Dim oSketched As SketchedSymbol = ThisApplication.CommandManager.Pick(SelectionFilterEnum.kDrawingSketchedSymbolFilter, "Select corresponding symbol")

Dim pt As Point2d
pt = oSketched.Position

 MsgBox("X: " &amp;amp; pt.X &amp;amp; vbLf &amp;amp; "Y: " &amp;amp; pt.Y)
 Clipboard.SetText("X: "&amp;amp; pt.X &amp;amp; " Y: "&amp;amp; pt.Y)
End Sub&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Use something similiar to this.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 20 Mar 2015 13:20:09 GMT</pubDate>
    <dc:creator>MechMachineMan</dc:creator>
    <dc:date>2015-03-20T13:20:09Z</dc:date>
    <item>
      <title>[iLogic] Control Position of Parts List</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/3210568#M138521</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am creating a drawing controlled by ilogic. The assembly can vary in size considerably so I have set the IDW to change between sheet size A3 and A2 accordingly using ilogic. However, when the sheet size is changed, the parts list stays in a static position.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Currently, the parts list is situated in the top right corner up against the title block and the border. So when changing from Size A3 to Size A2, the parts list ends up in the middle of the page. Is there anyway i can control the position of the parts list so it changes with the sheet size chage?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know I could simply move the partslist to the bottom left corner, which is a work around. However, I'd like to be able to keep the drawings in line with the company standard.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As always, any help is appreciated&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 31 Oct 2011 09:35:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/3210568#M138521</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-10-31T09:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: [iLogic] Control Position of Parts List</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/3220988#M138522</link>
      <description>&lt;P&gt;get partslist's property position, hope it helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;'get paper size and set position&lt;/P&gt;&lt;P&gt;dim newposition as point2d&lt;/P&gt;&lt;P&gt;newposition = oPartslist.position&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;newposition.x=35&lt;/P&gt;&lt;P&gt;newposition.y=10&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;oPartslist.position = newposition&lt;/P&gt;</description>
      <pubDate>Tue, 08 Nov 2011 17:55:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/3220988#M138522</guid>
      <dc:creator>skyngu</dc:creator>
      <dc:date>2011-11-08T17:55:30Z</dc:date>
    </item>
    <item>
      <title>Re: [iLogic] Control Position of Parts List</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/4860390#M138523</link>
      <description>&lt;P&gt;I need exactly this.&lt;/P&gt;&lt;P&gt;This code is not working for me,&lt;/P&gt;&lt;P&gt;Anyone can help me?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 06 Mar 2014 12:47:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/4860390#M138523</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-03-06T12:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: [iLogic] Control Position of Parts List</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/5527969#M138524</link>
      <description>&lt;P&gt;This Work, but if i need to fix it to left bottom corner then what?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2015 14:22:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/5527969#M138524</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-04T14:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: [iLogic] Control Position of Parts List</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/5528101#M138525</link>
      <description>try this:&lt;BR /&gt;'Add Parts List on right top corner of border&lt;BR /&gt;Dim oPartsListPosition As Point2d&lt;BR /&gt;Set oPartsListPosition = oSheet.Border.RangeBox.MaxPoint&lt;BR /&gt;&lt;BR /&gt;Set oPartsList = oSheet.PartsLists.Add(oDoc, oPartsListPosition, kStructured, , , True)&lt;BR /&gt;&lt;BR /&gt;that is on right top corner. the rangebox.minpoint fit your need</description>
      <pubDate>Wed, 04 Mar 2015 15:30:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/5528101#M138525</guid>
      <dc:creator>skyngu</dc:creator>
      <dc:date>2015-03-04T15:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: [iLogic] Control Position of Parts List</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/5550113#M138526</link>
      <description>&lt;P&gt;I cant get i to place it right,( in the left corner by a cordinate. )&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>Fri, 20 Mar 2015 13:06:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/5550113#M138526</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-20T13:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: [iLogic] Control Position of Parts List</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/5550146#M138527</link>
      <description>&lt;P&gt;So change the x and y values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Place it where you want it, and write code that will grab it's x/y position, than insert that into your original code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2015 13:19:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/5550146#M138527</guid>
      <dc:creator>MechMachineMan</dc:creator>
      <dc:date>2015-03-20T13:19:10Z</dc:date>
    </item>
    <item>
      <title>Re: [iLogic] Control Position of Parts List</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/5550147#M138528</link>
      <description>&lt;PRE&gt;Imports System.Windows.Forms

Sub Main()
Dim doc As DrawingDocument
    doc = ThisApplication.ActiveDocument

Dim oSketched As SketchedSymbol = ThisApplication.CommandManager.Pick(SelectionFilterEnum.kDrawingSketchedSymbolFilter, "Select corresponding symbol")

Dim pt As Point2d
pt = oSketched.Position

 MsgBox("X: " &amp;amp; pt.X &amp;amp; vbLf &amp;amp; "Y: " &amp;amp; pt.Y)
 Clipboard.SetText("X: "&amp;amp; pt.X &amp;amp; " Y: "&amp;amp; pt.Y)
End Sub&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Use something similiar to this.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2015 13:20:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/5550147#M138528</guid>
      <dc:creator>MechMachineMan</dc:creator>
      <dc:date>2015-03-20T13:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: [iLogic] Control Position of Parts List</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/5596680#M138529</link>
      <description>&lt;P&gt;I am using this code, but it uses the wrong point on the partlist. i need to fix it in the BottonLeft corner for the partlist.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SyntaxEditor Code Snippet&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;On&lt;/SPAN&gt; &lt;SPAN&gt;Error&lt;/SPAN&gt; &lt;SPAN&gt;Resume&lt;/SPAN&gt; &lt;SPAN&gt;Next&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDrawDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DrawingDocument&lt;/SPAN&gt;
&lt;SPAN&gt;oDrawDoc&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oPartsList&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartsList&lt;/SPAN&gt;
&lt;SPAN&gt;oPartsList&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;oDrawDoc&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;ActiveSheet&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;PartsLists&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Item&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;newposition2&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;point2d&lt;/SPAN&gt;
&lt;SPAN&gt;newposition2&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;oPartslist&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;position&lt;/SPAN&gt;
&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;
&lt;SPAN&gt;newposition2&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;x&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;41&lt;/SPAN&gt;
&lt;SPAN&gt;newposition2&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;y&lt;/SPAN&gt;&lt;SPAN&gt;=6.53&lt;/SPAN&gt;
&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;' &lt;/SPAN&gt;
&lt;SPAN&gt;oPartslist&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;position&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;newposition2&lt;BR /&gt;&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 17 Apr 2015 10:50:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/5596680#M138529</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-04-17T10:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: [iLogic] Control Position of Parts List</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/5597118#M138530</link>
      <description>&lt;PRE&gt;'activating this command part list table will be inserted and will sit on top of title block on lower right corner

' add partslist table

oDrawDoc = ThisDoc.Document
 'Set a reference to the active sheet.
    Dim oSheet As Sheet
      oSheet = oDrawDoc.ActiveSheet
    Dim oBorder As Border = oSheet.Border
    ' Set a reference to the first drawing view 

 
    Dim oDrawingView As DrawingView
      oDrawingView = oSheet.DrawingViews(1)
      
If Not oBorder Is Nothing Then
	oPlacementPoint = oBorder.RangeBox.MaxPoint
Else
	oPlacementPoint = ThisApplication.TransientGeometry.CreatePoint2d(oSheet.Width, oSheet.Height)
End If


    
   
    ' Create the parts list.
    Dim oPartsList As PartsList
     oPartsList = oSheet.PartsLists.Add(oDrawingView, oPlacementPoint)

     
   
minXpoint = oSheet.TitleBlock.RangeBox.MinPoint.x
minYpoint = oSheet.TitleBlock.RangeBox.MaxPoint.Y
maxXpoint = oPlacementPoint.x
dPointx = oSheet.PartsLists.Item(1).RangeBox.MinPoint.X - minXpoint
dPointY = oSheet.PartsLists.Item(1).RangeBox.MinPoint.Y - minYpoint
maxYpoint = oPlacementPoint.Y - dPointY
    
Dim newmin, newmax As Point2d
newmin = ThisApplication.TransientGeometry.CreatePoint2d(minXpoint, minYpoint)
newmax = ThisApplication.TransientGeometry.CreatePoint2d(maxXpoint, maxYpoint)
oSheet.PartsLists.Item(1).Delete
oPartsList = oSheet.PartsLists.Add(oDrawingView, newmax)

 &lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Try this one, working for me for long time, but it doesn't work with assembly&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2015 14:25:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/5597118#M138530</guid>
      <dc:creator>GosponZ</dc:creator>
      <dc:date>2015-04-17T14:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: [iLogic] Control Position of Parts List</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/5597409#M138531</link>
      <description>&lt;P&gt;Thank you very much, this leaded me to the right rule,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SyntaxEditor Code Snippet&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDrawDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DrawingDocument&lt;/SPAN&gt;
&lt;SPAN&gt;oDrawDoc&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oSheet&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;sheet&lt;/SPAN&gt;
&lt;SPAN&gt;oSheet&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;oDrawDoc&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;ActiveSheet&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oPartslist&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Partslist&lt;/SPAN&gt;
&lt;SPAN&gt;oPartsList&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;oDrawDoc&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;ActiveSheet&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;PartsLists&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Item&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oPlacementPoint&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;oPlacementPoint2&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;point2d&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oBorder&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Border&lt;/SPAN&gt;
&lt;SPAN&gt;oBorder&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;oSheet&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Border&lt;/SPAN&gt;

&lt;SPAN&gt;PartHight&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;oSheet&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;PartsLists&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Item&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;RangeBox&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;MaxPoint&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Y&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt;oSheet&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;PartsLists&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Item&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;RangeBox&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;MinPoint&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Y&lt;/SPAN&gt;
&lt;SPAN&gt;TitleY&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;oSheet&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;TitleBlock&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;RangeBox&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;MaxPoint&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Y&lt;/SPAN&gt;
&lt;SPAN&gt;PointX&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;oBorder&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Rangebox&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Maxpoint&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;x&lt;/SPAN&gt;
&lt;SPAN&gt;PointY&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;TitleY&lt;/SPAN&gt;&lt;SPAN&gt;+&lt;/SPAN&gt;&lt;SPAN&gt;PartHight&lt;/SPAN&gt;

&lt;SPAN&gt;oPlacementPoint&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;TransientGeometry&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;CreatePoint2d&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;PointX&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;PointY&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;
&lt;SPAN&gt;oPartslist&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;position&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;oPlacementPoint&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 17 Apr 2015 16:42:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/5597409#M138531</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-04-17T16:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: [iLogic] Control Position of Parts List</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/6791533#M138532</link>
      <description>&lt;P&gt;Could I use this to place title blocks?&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2017 07:46:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/6791533#M138532</guid>
      <dc:creator>Tigerpirro</dc:creator>
      <dc:date>2017-01-09T07:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: [iLogic] Control Position of Parts List</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/6791969#M138533</link>
      <description>&lt;P&gt;no&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2017 11:46:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-control-position-of-parts-list/m-p/6791969#M138533</guid>
      <dc:creator>GosponZ</dc:creator>
      <dc:date>2017-01-09T11:46:44Z</dc:date>
    </item>
  </channel>
</rss>

