<?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: Populating Toolpath along with Toolpath tolerance, Speed and Feed which can be edited in PowerShape and PowerMill API Forum</title>
    <link>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9765474#M552</link>
    <description>&lt;P&gt;You are only adding the text strings to the List Box for "Feed", "RPM" etc.&amp;nbsp; You would need to query PowerMill to find out what the values are.&amp;nbsp; The OLE API you are using is super old and was replaced by the API described in the sticky posts in this forum.&amp;nbsp; I would suggest you use those instead.&lt;/P&gt;</description>
    <pubDate>Thu, 24 Sep 2020 10:08:57 GMT</pubDate>
    <dc:creator>luke.edwards.autodesk</dc:creator>
    <dc:date>2020-09-24T10:08:57Z</dc:date>
    <item>
      <title>Populating Toolpath along with Toolpath tolerance, Speed and Feed which can be edited</title>
      <link>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9765332#M550</link>
      <description>&lt;P&gt;Hello API Forum,&lt;/P&gt;&lt;P&gt;I am preparing a form and in that require help (Visual studio &amp;amp; VB language)&lt;/P&gt;&lt;P&gt;I am trying to collect toolpath information like Tolerance, Feed &amp;amp; Speeds which can be edited by multiple selection.&lt;/P&gt;&lt;P&gt;In this Toolpath list (ListView) is being populated using For loop but Tol, feed and speed are not being captured.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FYI, Attached images shows Form and Code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please can you advise how this can be done or suggest if other solution is required to achieve this.&lt;/P&gt;&lt;P&gt;Many Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Toolpath Image.JPG" style="width: 880px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/823011i8548C175E3D84B9C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Toolpath Image.JPG" alt="Toolpath Image.JPG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VB Code.JPG" style="width: 735px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/823012i484E806AB159BE34/image-size/large?v=v2&amp;amp;px=999" role="button" title="VB Code.JPG" alt="VB Code.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 08:59:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9765332#M550</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-09-24T08:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Toolpath along with Toolpath tolerance, Speed and Feed which can be edited</title>
      <link>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9765356#M551</link>
      <description>&lt;P&gt;..&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 08:59:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9765356#M551</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-09-24T08:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Toolpath along with Toolpath tolerance, Speed and Feed which can be edited</title>
      <link>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9765474#M552</link>
      <description>&lt;P&gt;You are only adding the text strings to the List Box for "Feed", "RPM" etc.&amp;nbsp; You would need to query PowerMill to find out what the values are.&amp;nbsp; The OLE API you are using is super old and was replaced by the API described in the sticky posts in this forum.&amp;nbsp; I would suggest you use those instead.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 10:08:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9765474#M552</guid>
      <dc:creator>luke.edwards.autodesk</dc:creator>
      <dc:date>2020-09-24T10:08:57Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Toolpath along with Toolpath tolerance, Speed and Feed which can be edited</title>
      <link>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9765484#M553</link>
      <description>&lt;P&gt;Sorry, looking at the screenshot again, I can see that you have used a mix of the two APIs, new and old.&lt;/P&gt;
&lt;P&gt;Remove the references to the OLE one.&amp;nbsp; You would then need to do something like:&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;For Each (toolpath As PMToolpath In session.Toolpaths)
    Dim lvItem = ListView1.Items.Add(toolpath.Name)
    lvItem.SubItems.AddRange(toolpath.Tolerance, toolpath.SurfaceSpeed, toolpath.CuttingFeed)
Next&lt;/LI-CODE&gt;
&lt;P&gt;However the API currently doesn't have a Tolerance property for Toolpaths.&amp;nbsp; I could add that for you though if that would help?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 10:14:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9765484#M553</guid>
      <dc:creator>luke.edwards.autodesk</dc:creator>
      <dc:date>2020-09-24T10:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Toolpath along with Toolpath tolerance, Speed and Feed which can be edited</title>
      <link>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9765601#M554</link>
      <description>&lt;P&gt;Hello Luke,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the feedback.&lt;/P&gt;&lt;P&gt;I tried to remove as instructed but "toolpath" gives a error as shown in below image.&lt;/P&gt;&lt;P&gt;Please can you advise what I am doing wrong. I have attached the code and image below.&lt;BR /&gt;&lt;BR /&gt;As a side note : Also advise how would you add Tolerance property ? FYI you can exclude not to include this time-being.&lt;/P&gt;&lt;LI-CODE lang="general"&gt;Imports Autodesk.ProductInterface.PowerMILL

Public Class Form1
    Dim powerMill As New PMAutomation(Autodesk.ProductInterface.InstanceReuse.UseExistingInstance)
    Dim session As PMProject = powerMill.ActiveProject

    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load

    End Sub

    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        ListView1.Items.Clear()
        Dim toolpath As String

        For Each (toolpath As PMToolpath In session.Toolpaths)
            Dim lvItem = ListView1.Items.Add(toolpath.Name)
            lvItem.SubItems.AddRange(toolpath.Tolerance, toolpath.SurfaceSpeed, toolpath.CuttingFeed)
        Next

    End Sub
End Class&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 893px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/823054i5EEC1535A85AD492/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 11:39:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9765601#M554</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-09-24T11:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Toolpath along with Toolpath tolerance, Speed and Feed which can be edited</title>
      <link>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9765615#M555</link>
      <description>&lt;P&gt;You have Dim toolpath As String.&amp;nbsp; This is a duplicate definition.&amp;nbsp; Just remove that line and it should resolve the issue.&lt;/P&gt;
&lt;P&gt;You will then see an error because Tolerance is not a valid property of PMToolpath.&amp;nbsp; Let me know if you want this added to the API.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 11:44:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9765615#M555</guid>
      <dc:creator>luke.edwards.autodesk</dc:creator>
      <dc:date>2020-09-24T11:44:23Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Toolpath along with Toolpath tolerance, Speed and Feed which can be edited</title>
      <link>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9765655#M556</link>
      <description>&lt;P&gt;Hello Luke,&lt;/P&gt;&lt;P&gt;Done changes as requested but still showing error.&lt;/P&gt;&lt;P&gt;In image, have shown the Error comping in Error List tab stating "toolpath" is not declared.&lt;/P&gt;&lt;P&gt;Kindly have a look and advise.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/823067i9C7449856523C1FE/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 12:01:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9765655#M556</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-09-24T12:01:46Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Toolpath along with Toolpath tolerance, Speed and Feed which can be edited</title>
      <link>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9765673#M557</link>
      <description>&lt;P&gt;Ah, try removing the brackets:&lt;/P&gt;
&lt;P&gt;For Each toolpath As PMToolpath in session.Toolpaths&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;C# uses brackets but VB doesn't... My mistake!&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 12:09:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9765673#M557</guid>
      <dc:creator>luke.edwards.autodesk</dc:creator>
      <dc:date>2020-09-24T12:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Toolpath along with Toolpath tolerance, Speed and Feed which can be edited</title>
      <link>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9765728#M558</link>
      <description>&lt;P&gt;Hello Luke,&lt;/P&gt;&lt;P&gt;Thanks for the information and it worked in addition to changing the bracket positions for AddRange also.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In addition, please can you advise what needs to be done in order to achieve task as shown in below image.&lt;BR /&gt;As you can see, I am trying to update Speed and feeds of multiple toolpath in one go by selecting the required ones only.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many Thanks&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 812px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/823087iF9062DC0DDB05D88/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 12:33:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9765728#M558</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-09-24T12:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Toolpath along with Toolpath tolerance, Speed and Feed which can be edited</title>
      <link>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9765879#M559</link>
      <description>&lt;P&gt;You should be able to do something like:&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;For Each item As ListViewItem in ListView1.SelectedItems
    Dim name = item.Text
    session.Toolpaths(name).SurfaceSpeed = CDbl(txtSurfaceSpeed.Text)
    session.Toolpaths(name).CuttingFeed = CDbl(txtCuttingFeed.Text)
Next&lt;/LI-CODE&gt;
&lt;P&gt;where txtSurfaceSpeed and txtCuttingFeed are your two textboxes.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 13:21:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9765879#M559</guid>
      <dc:creator>luke.edwards.autodesk</dc:creator>
      <dc:date>2020-09-24T13:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Toolpath along with Toolpath tolerance, Speed and Feed which can be edited</title>
      <link>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9766226#M560</link>
      <description>&lt;P&gt;Hello Luke,&lt;/P&gt;&lt;P&gt;Thanks for your help and it is working&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 15:17:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9766226#M560</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-09-24T15:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Toolpath along with Toolpath tolerance, Speed and Feed which can be edited</title>
      <link>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9766232#M561</link>
      <description>Great news! Any further issues, feel free to post.&lt;BR /&gt;</description>
      <pubDate>Thu, 24 Sep 2020 15:18:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9766232#M561</guid>
      <dc:creator>luke.edwards.autodesk</dc:creator>
      <dc:date>2020-09-24T15:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Toolpath along with Toolpath tolerance, Speed and Feed which can be edited</title>
      <link>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9766365#M562</link>
      <description>&lt;P&gt;Hello Luke,&lt;/P&gt;&lt;P&gt;In the working exampled, i tried to add ToolDiameter column to be outputted in ListView but it came back with below error. I am not sure why this happened. Also will it be possible to add a property for Toolpath Depth of Cut, Tolerance and Toolpath Stepover&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/823214iC550915ED01A569C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2020 16:22:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9766365#M562</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-09-24T16:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Toolpath along with Toolpath tolerance, Speed and Feed which can be edited</title>
      <link>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9770567#M563</link>
      <description>&lt;P&gt;I would suggest instead that you access the tool itself and read the property from there:&lt;/P&gt;
&lt;P&gt;var tool = session.Tools[toolpath.ToolName];&lt;/P&gt;
&lt;P&gt;var diameter = tool.Diameter;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can look at adding the other ones for you.&amp;nbsp; Which toolpath strategies are you using?&lt;/P&gt;</description>
      <pubDate>Sun, 27 Sep 2020 07:50:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9770567#M563</guid>
      <dc:creator>luke.edwards.autodesk</dc:creator>
      <dc:date>2020-09-27T07:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Toolpath along with Toolpath tolerance, Speed and Feed which can be edited</title>
      <link>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9774107#M564</link>
      <description>&lt;P&gt;Hello Luke,&lt;/P&gt;&lt;P&gt;I tried using the solution provided but still it showing error.&lt;BR /&gt;please can advise on this.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="devangp_0-1601375812185.png" style="width: 866px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/825023i0350455F6E93F239/image-dimensions/866x185?v=v2" width="866" height="185" role="button" title="devangp_0-1601375812185.png" alt="devangp_0-1601375812185.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 10:39:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9774107#M564</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-09-29T10:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Toolpath along with Toolpath tolerance, Speed and Feed which can be edited</title>
      <link>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9784778#M565</link>
      <description>&lt;P&gt;Hi, does the toolpath not have a tool assigned to it?&amp;nbsp; I think this is the only time when this can happen.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2020 15:54:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9784778#M565</guid>
      <dc:creator>luke.edwards.autodesk</dc:creator>
      <dc:date>2020-10-05T15:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Toolpath along with Toolpath tolerance, Speed and Feed which can be edited</title>
      <link>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9786041#M566</link>
      <description>&lt;P&gt;Hello Luke,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You are correct, there was one toolpath where tool was not assigned to a toolpath.&lt;/P&gt;&lt;P&gt;By assigning it the error has been removed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In order to eliminate the issue of tool not assigned would like to assign an If &amp;amp; Else loop, please can you advice what code will come :&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;If ****** Tool not assigned to toolpath ***** Then
         MsgBox("Tool Not Assigned")
Else
*****Will go in the current Loop to populate the toolpath&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;Many Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2020 08:11:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9786041#M566</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-10-06T08:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Toolpath along with Toolpath tolerance, Speed and Feed which can be edited</title>
      <link>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9786058#M567</link>
      <description>&lt;P&gt;Hello Luke,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Apologies, in addition to above, is there a code to output Max &amp;amp; Min X,Y,Z of a toolpath.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2020 08:19:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9786058#M567</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-10-06T08:19:13Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Toolpath along with Toolpath tolerance, Speed and Feed which can be edited</title>
      <link>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9786113#M568</link>
      <description>&lt;P&gt;Hi.&amp;nbsp; I have updated the API to handle this case.&amp;nbsp; It should return an empty string if there is no tool.&amp;nbsp; I have also added a Tool property that will return either the tool or null if there is no tool.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regarding your other question, you have GetBlockLimits available on the PMProject.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But if you want the actual limits of the calculated toolpath then you would need to create a pattern from the toolpath and then output that to curves and get the bounds of that.&amp;nbsp; The first part isn't supported by the API though at the moment.&amp;nbsp; But if you have it as a PMPattern you can use ToPolylines and get the BoundingBox of each to find the true bounds.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2020 08:48:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9786113#M568</guid>
      <dc:creator>luke.edwards.autodesk</dc:creator>
      <dc:date>2020-10-06T08:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: Populating Toolpath along with Toolpath tolerance, Speed and Feed which can be edited</title>
      <link>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9786985#M569</link>
      <description>&lt;P&gt;Hi Luke,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the update.&lt;/P&gt;&lt;P&gt;One thing noticed that when populating the toolpath list in ListView, the order of toolpath are not populating in the order of toolpath which are there in Powermill. Is there any solution for that&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2020 15:20:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/powershape-and-powermill-api/populating-toolpath-along-with-toolpath-tolerance-speed-and-feed/m-p/9786985#M569</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-10-06T15:20:56Z</dc:date>
    </item>
  </channel>
</rss>

