<?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 iLogic Change section arrow style in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-change-section-arrow-style/m-p/10674795#M129788</link>
    <description>&lt;P&gt;Hi I hope everyone is doing great ! &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@B4D44A73814D7FC0D950DEDFACB97081/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a small question :&lt;/P&gt;&lt;P&gt;I whould like to change the representasion of the section arrows in the styles manager using iLogic.&lt;/P&gt;&lt;P&gt;Manualy, this is what the menu looks like :&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="laurentfinetAF8M9_0-1633674427972.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/974776iCEACE5B6FAFBD2DD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="laurentfinetAF8M9_0-1633674427972.png" alt="laurentfinetAF8M9_0-1633674427972.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've had good look in the object tree &amp;amp; Inventor API help , and for the love of me I can't find it.. :C&lt;/P&gt;&lt;P&gt;Has any one managed to do this before ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kinds regards,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;FINET L.&lt;/P&gt;</description>
    <pubDate>Fri, 08 Oct 2021 06:28:38 GMT</pubDate>
    <dc:creator>FINET_Laurent</dc:creator>
    <dc:date>2021-10-08T06:28:38Z</dc:date>
    <item>
      <title>iLogic Change section arrow style</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-change-section-arrow-style/m-p/10674795#M129788</link>
      <description>&lt;P&gt;Hi I hope everyone is doing great ! &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@B4D44A73814D7FC0D950DEDFACB97081/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a small question :&lt;/P&gt;&lt;P&gt;I whould like to change the representasion of the section arrows in the styles manager using iLogic.&lt;/P&gt;&lt;P&gt;Manualy, this is what the menu looks like :&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="laurentfinetAF8M9_0-1633674427972.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/974776iCEACE5B6FAFBD2DD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="laurentfinetAF8M9_0-1633674427972.png" alt="laurentfinetAF8M9_0-1633674427972.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've had good look in the object tree &amp;amp; Inventor API help , and for the love of me I can't find it.. :C&lt;/P&gt;&lt;P&gt;Has any one managed to do this before ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kinds regards,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;FINET L.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Oct 2021 06:28:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-change-section-arrow-style/m-p/10674795#M129788</guid>
      <dc:creator>FINET_Laurent</dc:creator>
      <dc:date>2021-10-08T06:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic Change section arrow style</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-change-section-arrow-style/m-p/10675738#M129803</link>
      <description>&lt;P&gt;After some investigation, I don't think there is a Class or object defined in the API yet for that specific type of Style object.&amp;nbsp; I can find them, but they are just generic Style objects, so you can't access any of the stuff within them that would be specific to that type of style.&lt;/P&gt;
&lt;P&gt;Here's the simple iLogic example to get to those objects:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;oDDoc = ThisDrawing.Document
oDSMgr = oDDoc.StylesManager
oActiveDSS = oDSMgr.ActiveStandardStyle
For Each oStyle As Style In oDSMgr.Styles
	If Not oStyle.StyleType = StyleTypeEnum.kViewAnnotationStyleType Then Continue For
	MsgBox("TypeName(oStyle) = " &amp;amp; TypeName(oStyle), , "")
	MsgBox("oStyle.Type.ToString = " &amp;amp; oStyle.Type.ToString,,"")
	'If oStyle.Name = "Annotation de la vue (ISO)" Then
		'do something
	'End If
Next&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this solved your problem, or answered your question, please click &lt;SPAN style="background-color: green; color: white;"&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;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@7401B55A0A518861312A0F851CD29320/emoticons/1f44d.png" alt=":thumbs_up:" title=":thumbs_up:" /&gt;.&lt;/P&gt;
&lt;P&gt;If you want and have time, I would appreciate your Vote(s) for &lt;A href="https://forums.autodesk.com/t5/forums/recentpostspage/post-type/message/interaction-style/idea/user-id/7812054/" target="_blank" rel="noopener"&gt;My IDEAS &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@B166FEBB95D67CFA84899D32D8E17FC1/emoticons/1f4a1.png" alt=":light_bulb:" title=":light_bulb:" /&gt;&lt;/A&gt; or you can Explore &lt;A href="https://knowledge.autodesk.com/profile/LTSUSR7HXMSAE/articles" target="_blank" rel="noopener"&gt;My CONTRIBUTIONS &lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Oct 2021 13:36:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-change-section-arrow-style/m-p/10675738#M129803</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2021-10-08T13:36:16Z</dc:date>
    </item>
  </channel>
</rss>

