<?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: Flatbendresult.Bend = nothing??? in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/flatbendresult-bend-nothing/m-p/6851325#M69864</link>
    <description>&lt;P&gt;Hello Wayne,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for now I only have a confirmation from ADSK, that this is a bug in the API...&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;</description>
    <pubDate>Fri, 03 Feb 2017 07:40:53 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-02-03T07:40:53Z</dc:date>
    <item>
      <title>Flatbendresult.Bend = nothing???</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/flatbendresult-bend-nothing/m-p/6663677#M67710</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to apply a custom Text to a bendnote, including a custom ID. To achieve this, I save the ID as an attribute to the first Outerface (I wonder if there can be more then one anyway....) of the Bend Object in Scope. In the drawing I was hoping to get back to the Bend Object via the Bendedge.Modelgeometry.Edge --&amp;gt; corresponding Flatbendresult.Bend path.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Appearently, although the Property "Bend" exists on the Flatbendresult Object, it is always Nothing/null (at least in my tests....).&lt;/P&gt;&lt;P&gt;I was trying several ways via different Edge-TransientKeys hoping to find a match. No luck....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So actually i see no way to get the connection between the FlatBendResult and the Bend (resp. the faces of it) it's derived from......&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could anyone manage such a situation? Is this a bug in the API...?&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-center" image-alt="2016-11-02_22h50_10.png" style="width: 345px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/288693iF43AE2BE073E9893/image-size/large?v=v2&amp;amp;px=999" role="button" title="2016-11-02_22h50_10.png" alt="2016-11-02_22h50_10.png" /&gt;&lt;/span&gt;﻿BR,&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2016 22:35:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/flatbendresult-bend-nothing/m-p/6663677#M67710</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-02T22:35:51Z</dc:date>
    </item>
    <item>
      <title>Re: Flatbendresult.Bend = nothing???</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/flatbendresult-bend-nothing/m-p/6765247#M68829</link>
      <description>&lt;P&gt;Hi Daniel (and any Autodesk people watching)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you get an answer to this issue, as I am also having the same issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards &amp;amp; Merry Christmas&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Wayne&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Inventor 2016 (Build 236, Release: 2016.2.2 - Date 10/10/2016&lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2016 10:39:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/flatbendresult-bend-nothing/m-p/6765247#M68829</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-12-22T10:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: Flatbendresult.Bend = nothing???</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/flatbendresult-bend-nothing/m-p/6765713#M68837</link>
      <description>&lt;P&gt;Hi, i have no problem with getting the results that i want from a drawingview and the actual bend (this is a snippet from my .NET code)&lt;/P&gt;&lt;P&gt;I hope this is what you are looking for!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt; If oDrawViewCurve.EdgeType = DrawingEdgeTypeEnum.kBendDownEdge Or oDrawViewCurve.EdgeType = DrawingEdgeTypeEnum.kBendUpEdge Then

                Dim oEdge As Edge = oDrawViewCurve.ModelGeometry
                Dim oSMDef As SheetMetalComponentDefinition = oEdge.Parent.ComponentDefinition

                Dim oSmStyleBendradius As Object = oSMDef.ActiveSheetMetalStyle.BendRadius
               
                Dim oFlatPattern As FlatPattern = oSMDef.FlatPattern

                Dim oBendResult As FlatBendResult = oFlatPattern.FlatBendResults.Item(oEdge)
End if&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2016 14:44:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/flatbendresult-bend-nothing/m-p/6765713#M68837</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-12-22T14:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: Flatbendresult.Bend = nothing???</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/flatbendresult-bend-nothing/m-p/6851321#M69863</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I'm afraid, you didn't catch the question. The problem isn't getting the Flatbendresult, but the Bend object in in the folded model of the flatbendresult.&lt;/P&gt;&lt;P&gt;BTW: Autodesk confirmed this as an error in the API. I have a running task at Autodesk to this. As any news come up, I will comment here.&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Fri, 03 Feb 2017 07:39:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/flatbendresult-bend-nothing/m-p/6851321#M69863</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-03T07:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: Flatbendresult.Bend = nothing???</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/flatbendresult-bend-nothing/m-p/6851325#M69864</link>
      <description>&lt;P&gt;Hello Wayne,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for now I only have a confirmation from ADSK, that this is a bug in the API...&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Fri, 03 Feb 2017 07:40:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/flatbendresult-bend-nothing/m-p/6851325#M69864</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-03T07:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: Flatbendresult.Bend = nothing???</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/flatbendresult-bend-nothing/m-p/6851333#M69865</link>
      <description>&lt;P&gt;Thanks - please post if they come back with an answer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Fri, 03 Feb 2017 07:47:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/flatbendresult-bend-nothing/m-p/6851333#M69865</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-03T07:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: Flatbendresult.Bend = nothing???</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/flatbendresult-bend-nothing/m-p/6881866#M70238</link>
      <description>&lt;P&gt;Hi, ADSK started an internal change request on this...&lt;/P&gt;&lt;P&gt;I post, when I get news.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2017 09:39:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/flatbendresult-bend-nothing/m-p/6881866#M70238</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-16T09:39:40Z</dc:date>
    </item>
  </channel>
</rss>

