<?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 Code to change in a contour flange the Offset Direction (Flip Side) in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12746801#M10698</link>
    <description>&lt;P&gt;have a look at the following iLogic rule. It will ask you to select a contour flange feature. Then it will flip the direction for you.&lt;/P&gt;
&lt;LI-CODE lang="visual-basic"&gt;Dim doc As PartDocument = ThisDoc.Document
Dim def As SheetMetalComponentDefinition = doc.ComponentDefinition

Dim selectedFeature = ThisApplication.CommandManager.Pick(SelectionFilterEnum.kPartFeatureFilter, "Select a contour flange feature")

If (not TypeOf selectedFeature Is ContourFlangeFeature) Then
    MsgBox("Plz select a contour flage feature!")
    Return
End If

Dim flangeFeature As ContourFlangeFeature = selectedFeature
Dim flangeFeatureDef As ContourFlangeDefinition = flangeFeature.Definition

If (flangeFeatureDef.ExtentDirection &amp;lt;&amp;gt; PartFeatureExtentDirectionEnum.kNegativeExtentDirection) Then
	flangeFeature.Definition.ExtentDirection = PartFeatureExtentDirectionEnum.kNegativeExtentDirection
Else
    flangeFeature.Definition.ExtentDirection = PartFeatureExtentDirectionEnum.kPositiveExtentDirection
End If&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 01 May 2024 19:53:37 GMT</pubDate>
    <dc:creator>JelteDeJong</dc:creator>
    <dc:date>2024-05-01T19:53:37Z</dc:date>
    <item>
      <title>Ilogic Code to change in a contour flange the Offset Direction (Flip Side)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12743721#M10692</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hello togehter,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i am serching for a Ilogic code to change the Offset Direction (Flip Side)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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="michael_janssenCN38L_0-1714486282279.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1356586iF9CEEB358F9735FC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="michael_janssenCN38L_0-1714486282279.png" alt="michael_janssenCN38L_0-1714486282279.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Greetings Michael&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 14:13:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12743721#M10692</guid>
      <dc:creator>michael_janssenCN38L</dc:creator>
      <dc:date>2024-04-30T14:13:00Z</dc:date>
    </item>
    <item>
      <title>Re: Ilogic Code to change in a contour flange the Offset Direction (Flip Side)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12743752#M10693</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14307069"&gt;@michael_janssenCN38L&lt;/a&gt;.&amp;nbsp; I believe the main Inventor API objects / properties you are looking for are as follows:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=GUID-SheetMetalFeatures" target="_blank" rel="noopener"&gt;SheetMetalFeatures&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=SheetMetalFeatures_ContourFlangeFeatures" target="_blank" rel="noopener"&gt;SheetMetalFeatures.ContourFlangeFeatures&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=GUID-ContourFlangeFeatures" target="_blank" rel="noopener"&gt;ContourFlangeFeatures&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=GUID-ContourFlangeFeature" target="_blank" rel="noopener"&gt;ContourFlangeFeature&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=ContourFlangeFeature_Definition" target="_blank" rel="noopener"&gt;ContourFlangeFeature.Definition&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=GUID-ContourFlangeDefinition" target="_blank" rel="noopener"&gt;ContourFlangeDefinition&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=ContourFlangeDefinition_ExtentDirection" target="_blank" rel="noopener"&gt;ContourFlangeDefinition.ExtentDirection&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=PartFeatureExtentDirectionEnum" target="_blank" rel="noopener"&gt;PartFeatureExtentDirectionEnum&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 14:24:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12743752#M10693</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2024-04-30T14:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: Ilogic Code to change in a contour flange the Offset Direction (Flip Side)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12743784#M10694</link>
      <description>&lt;P&gt;I suspect that it is the "PartFeatureExtentDirectionEnum" parameter that I need to apply to change the material direction.&lt;/P&gt;&lt;P&gt;What does this Ilogic text look like?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 14:30:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12743784#M10694</guid>
      <dc:creator>michael_janssenCN38L</dc:creator>
      <dc:date>2024-04-30T14:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: Ilogic Code to change in a contour flange the Offset Direction (Flip Side)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12743845#M10695</link>
      <description>&lt;P&gt;After looking at this a bit more, I'm thinking I may have been wrong about that property.&amp;nbsp; I believe that is the direction of the 'extent' (shown in lower, right area of the dialog).&amp;nbsp; I am not sure which of these would control which side of the Path geometry the material will be on.&amp;nbsp; Pretty much all the 'methods' are for getting or setting the 'extent', not the material offset from the path geometry.&amp;nbsp; When I look at all the properties of the feature, then look at all the properties of its definition, I am not seeing a property for that specification.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 14:47:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12743845#M10695</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2024-04-30T14:47:08Z</dc:date>
    </item>
    <item>
      <title>Re: Ilogic Code to change in a contour flange the Offset Direction (Flip Side)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12744426#M10696</link>
      <description>&lt;P&gt;&lt;STRONG&gt;The more I deal intensively with Inventor, the more you get the impression that the Inventor programmers do not program cleanly! What I am asking for here should be possible with ease!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The Inventor programmers simply forgot to implement it. I'm reaching its limits with the program. Instead of launching a new Inventor version every year, it should first be programmed cleanly!&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 18:36:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12744426#M10696</guid>
      <dc:creator>michael_janssenCN38L</dc:creator>
      <dc:date>2024-04-30T18:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: Ilogic Code to change in a contour flange the Offset Direction (Flip Side)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12744568#M10697</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14307069"&gt;@michael_janssenCN38L&lt;/a&gt;&amp;nbsp;For stuff like that it would be nice to have a 4th parameter type (Numeric, Text, True/False, and "Direction")?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 19:41:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12744568#M10697</guid>
      <dc:creator>chris</dc:creator>
      <dc:date>2024-04-30T19:41:48Z</dc:date>
    </item>
    <item>
      <title>Re: Ilogic Code to change in a contour flange the Offset Direction (Flip Side)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12746801#M10698</link>
      <description>&lt;P&gt;have a look at the following iLogic rule. It will ask you to select a contour flange feature. Then it will flip the direction for you.&lt;/P&gt;
&lt;LI-CODE lang="visual-basic"&gt;Dim doc As PartDocument = ThisDoc.Document
Dim def As SheetMetalComponentDefinition = doc.ComponentDefinition

Dim selectedFeature = ThisApplication.CommandManager.Pick(SelectionFilterEnum.kPartFeatureFilter, "Select a contour flange feature")

If (not TypeOf selectedFeature Is ContourFlangeFeature) Then
    MsgBox("Plz select a contour flage feature!")
    Return
End If

Dim flangeFeature As ContourFlangeFeature = selectedFeature
Dim flangeFeatureDef As ContourFlangeDefinition = flangeFeature.Definition

If (flangeFeatureDef.ExtentDirection &amp;lt;&amp;gt; PartFeatureExtentDirectionEnum.kNegativeExtentDirection) Then
	flangeFeature.Definition.ExtentDirection = PartFeatureExtentDirectionEnum.kNegativeExtentDirection
Else
    flangeFeature.Definition.ExtentDirection = PartFeatureExtentDirectionEnum.kPositiveExtentDirection
End If&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2024 19:53:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12746801#M10698</guid>
      <dc:creator>JelteDeJong</dc:creator>
      <dc:date>2024-05-01T19:53:37Z</dc:date>
    </item>
    <item>
      <title>Re: Ilogic Code to change in a contour flange the Offset Direction (Flip Side)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12748023#M10699</link>
      <description>&lt;P&gt;That was pretty close to the example code I was about to post right after I posted Message 2 above, but then I noticed that property controls which way the flange will go from the sketch plane, like what the icons in the lower right of that dialog are for.&amp;nbsp; But it does not control which side of the open sketch profile that the 'thickness' of the sheet metal will be on, like what the icons in the mid left portion of the dialog control.&amp;nbsp; I could not find anything in the 2024 API for controlling that.&amp;nbsp; It seems like I had seen this before, but I may be wrong.&amp;nbsp; Just the other day someone showed me a property of a common API object that was only shown in the 2023 help, but not in 2022 or 2024 help, so maybe it is something like that...not sure.&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 11:50:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12748023#M10699</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2024-05-02T11:50:12Z</dc:date>
    </item>
    <item>
      <title>Re: Ilogic Code to change in a contour flange the Offset Direction (Flip Side)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12749762#M10700</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5011186"&gt;@JelteDeJong&lt;/a&gt;&amp;nbsp;I want to make sure I understand this rule, when I run this and pick a counter flange, it flips the "offset direction", not the "width extents"? Because in the code it references the knegative/kpositive "extent direction", not the "offset direction"?&lt;/P&gt;</description>
      <pubDate>Fri, 03 May 2024 02:32:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12749762#M10700</guid>
      <dc:creator>chris</dc:creator>
      <dc:date>2024-05-03T02:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: Ilogic Code to change in a contour flange the Offset Direction (Flip Side)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12749774#M10701</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5011186"&gt;@JelteDeJong&lt;/a&gt;&amp;nbsp;(or anyone else), could I please trouble you to make a video that walks through how you wrote the above code and how someone new to Inventor API/iLogic would be able to write this code using the API 2022 object Model?&lt;/P&gt;&lt;P&gt;I was trying to see how easy it would be to change this code to effect the width extents direction, vs. the Offset direction&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="chris_0-1714704176245.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1357746iC09985937AD75BE0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="chris_0-1714704176245.png" alt="chris_0-1714704176245.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 May 2024 02:43:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12749774#M10701</guid>
      <dc:creator>chris</dc:creator>
      <dc:date>2024-05-03T02:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: Ilogic Code to change in a contour flange the Offset Direction (Flip Side)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12791913#M10702</link>
      <description>&lt;P&gt;I solved it differently. About a formula and ilogic code. Here is the file to try out.&lt;/P&gt;&lt;P&gt;There is also an Ilogic mask. Should only serve as a help and suggestion to suggest improvements.&lt;/P&gt;&lt;P&gt;But it's always a huge effort to get there until Inventor does what you want.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;greetings Michael&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 05:56:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12791913#M10702</guid>
      <dc:creator>michael_janssenCN38L</dc:creator>
      <dc:date>2024-05-23T05:56:07Z</dc:date>
    </item>
    <item>
      <title>Re: Ilogic Code to change in a contour flange the Offset Direction (Flip Side)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12792673#M10703</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14307069"&gt;@michael_janssenCN38L&lt;/a&gt;.&amp;nbsp; Thanks for posting an example part.&amp;nbsp; I did not really see anything in there that made me understand how to control which side of the sketch lines the materials thickness will offset to.&amp;nbsp; But it did remind me of another aspect of the design that I could check out, in an effort to figure this behavior out, or at least be able to 'predict' which side it will offset to.&amp;nbsp; And I did figure something useful out.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I started a new sheet metal part, created a new sketch on the X/Y plane, and sketched a straight line starting from negative X towards positive X (left to right).&amp;nbsp; I drew it at a slight angle on purpose, then used the horizontal geometric constraint on it, then constrained its mid point to the origin point, then added a 3 inch dimension to control its length (now fully constrained).&amp;nbsp; Ended that sketch.&amp;nbsp; Then clicked on the Contour Flange feature.&amp;nbsp; I observed that the material thickness was naturally offset on the bottom (negative Y) side of the line.&amp;nbsp; Then I used UNDO multiple times to get back to before the sketch line was drawn.&amp;nbsp; Then I did everything exactly the same again, but this time, I drew the line from positive X towards negative X (right to left).&amp;nbsp; Now when I start the Contour Flange command, the material thickness is naturally offset on the upper side (positive Y) of the line.&amp;nbsp; So, this proves that the natural offset direction is dictated by the 'direction' that the sketch geometry was drawn in, by default.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With that in mind, if we were generating the sketch geometry by code, we could do so in a way that ensures its direction is the way we want it, so that the material offset will be on the side we want.&amp;nbsp; However, if the sketch geometry already exists, and we have no idea which direction it was drawn in, we could still potentially inspect that sketch geometry by code to figure that out (which end of line segment is 'start' or 'end').&amp;nbsp; But if it is going the wrong direction, I am not sure how we could reverse it, in order to get the material offset to go the way we want it.&amp;nbsp; And I still do not know of a good way to flip that offset from one side to the other by code, during feature creation or after the feature has been created.&amp;nbsp; I know that in some CAM software we have a tool for reversing the direction of sketch geometry, because geometry direction is often important to the direction the cutting tool will travel, but I do not recall seeing a tool like that in Inventor.&amp;nbsp; And even if we did have a tool like that, I still would not want to include a whole block of code for having to inspect possibly non-linear sketch geometry to figure out its direction before creating a feature like this.&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 11:56:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12792673#M10703</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2024-05-23T11:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: Ilogic Code to change in a contour flange the Offset Direction (Flip Side)</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12794786#M10704</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hello Wesley, I may have solved it more simply.&lt;/P&gt;&lt;P&gt;My way of working is always!&lt;BR /&gt;1. First, work planes and axes&lt;BR /&gt;2. Sketches (also radii)&lt;BR /&gt;3. If necessary, features.&lt;/P&gt;&lt;P&gt;The big advantage with the working levels is that you can set them in the “plus” and “minus” range. (e.g. with Ilogic)&lt;/P&gt;&lt;P&gt;Never do a sketch on a solid model (if possible)&lt;/P&gt;&lt;P&gt;As you can see in the FX parameter, there are the following user parameters: "height:formula:thickness" + width:formula:thickness.&lt;/P&gt;&lt;P&gt;Let's focus on "width:formula:thickness". This is important for edging the material to the left or right.&lt;/P&gt;&lt;P&gt;Now look at the Ilogic rule “Folding side”. Then you should see that I have set the working levels once with plus and once in the minus area.&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="michael_janssenCN38L_0-1716536581299.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1366854i6E75E052DC2C6301/image-size/medium?v=v2&amp;amp;px=400" role="button" title="michael_janssenCN38L_0-1716536581299.png" alt="michael_janssenCN38L_0-1716536581299.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;All of this has the advantage that if you change the material thickness, it will be taken into account immediately.&lt;/P&gt;&lt;P&gt;I hope you understand my approach.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Greetings Michael&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2024 07:43:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-code-to-change-in-a-contour-flange-the-offset-direction/m-p/12794786#M10704</guid>
      <dc:creator>michael_janssenCN38L</dc:creator>
      <dc:date>2024-05-24T07:43:13Z</dc:date>
    </item>
  </channel>
</rss>

