<?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: change color and thickness  of sketch line in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-color-and-thickness-of-sketch-line/m-p/9548035#M111489</link>
    <description>&lt;P&gt;Or did I misunderstand maybe. Do you want to run the rule from an assemmbly and find a sketch by a specific name in any of the occurrences in the assembly?&lt;/P&gt;&lt;P&gt;Then something like this maybe?&lt;/P&gt;&lt;P&gt;This rule changes the color and thickness of sketchline(2) in all sketches with the selected name within any component in the assembly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oAsm&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;AssemblyDocument&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Document&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oSketchName&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt; = &lt;SPAN style="color: #008080;"&gt;"Sketch1"&lt;/SPAN&gt; &lt;SPAN style="color: #808080;"&gt;'Name of the sketch&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Each&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRefDoc&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Document&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;In&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oAsm&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;AllReferencedDocuments&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRefDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;DocumentType&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;DocumentTypeEnum&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;kAssemblyDocumentObject&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Or&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRefDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;DocumentType&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;DocumentTypeEnum&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;kPartDocumentObject&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oAsm&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Occurrences&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;AllReferencedOccurrences&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oRefDoc&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;Count&lt;/SPAN&gt; &amp;gt; 0
		&lt;SPAN style="color: #ff0000;"&gt;Try&lt;/SPAN&gt;
			&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oSketch&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;PlanarSketch&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oRefDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Sketches&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oSketchName&lt;/SPAN&gt;) &lt;SPAN style="color: #808080;"&gt;'sketch name = Name of sketch&lt;/SPAN&gt;
			&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oColor&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Color&lt;/SPAN&gt;
			&lt;SPAN style="color: #800000;"&gt;oColor&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TransientObjects&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;CreateColor&lt;/SPAN&gt;(255, 255, 255) &lt;SPAN style="color: #808080;"&gt;'White&lt;/SPAN&gt;

			&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oLine&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;SketchLine&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oSketch&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;SketchLines&lt;/SPAN&gt;(2)
			&lt;SPAN style="color: #800000;"&gt;oLine&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;OverrideColor&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oColor&lt;/SPAN&gt;
			&lt;SPAN style="color: #800000;"&gt;oLine&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;LineWeight&lt;/SPAN&gt; = 2 &lt;SPAN style="color: #808080;"&gt;'Set Lineweight&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;Catch&lt;/SPAN&gt;
			&lt;SPAN style="color: #808080;"&gt;'Sketch is not in document or Sketchline with selected index not in sketch&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Try&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;

&lt;SPAN style="color: #800080;"&gt;iLogicVb&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;UpdateWhenDone&lt;/SPAN&gt; = &lt;SPAN style="color: #ff0000;"&gt;True&lt;/SPAN&gt;
&lt;/PRE&gt;</description>
    <pubDate>Fri, 29 May 2020 10:02:20 GMT</pubDate>
    <dc:creator>JhoelForshav</dc:creator>
    <dc:date>2020-05-29T10:02:20Z</dc:date>
    <item>
      <title>change color and thickness  of sketch line</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-color-and-thickness-of-sketch-line/m-p/9547633#M111475</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want change properties (color and thickness) of sketch line in assembly/part, when I have open assembly,but not active sketch.&lt;/P&gt;&lt;P&gt;Rule:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dim oSketch as Sketch&lt;/P&gt;&lt;P&gt;oSketch=thisApplication.ActiveEditObject&amp;nbsp; &amp;nbsp;´&lt;FONT face="arial black,avant garde"&gt;here is a problem, because rule run only when is sketch active!!!&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dim oColor as color&lt;/P&gt;&lt;P&gt;oColor = thisApplication. TransientObject.CreateColor(0,0,0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;osketch.SketchLines(2).OverrideColor=oColor&lt;/P&gt;&lt;P&gt;---------------------&lt;/P&gt;&lt;P&gt;Question are:&lt;/P&gt;&lt;P&gt;1) How will run rule, when is sketch not active, but I have assembly/part open?&lt;/P&gt;&lt;P&gt;2) How change thickness of sketch line??&lt;/P&gt;&lt;P&gt;3) Where/how find out how is named this line/curve in sketch?? ( SketchLines(2) or&amp;nbsp;SketchLines(99) )&lt;/P&gt;&lt;P&gt;4) command for white color??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your time and reply!&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 06:21:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-color-and-thickness-of-sketch-line/m-p/9547633#M111475</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-29T06:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: change color and thickness  of sketch line</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-color-and-thickness-of-sketch-line/m-p/9547743#M111480</link>
      <description>&lt;P&gt;Hi @Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To get your rule to run, I'd recommend getting the sketch by its name:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Document&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Document&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oSketch&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;PlanarSketch&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Sketches&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"sketch name"&lt;/SPAN&gt;) &lt;SPAN style="color: #808080;"&gt;'sketch name = Name of sketch&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oColor&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Color&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;oColor&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TransientObjects&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;CreateColor&lt;/SPAN&gt;(255, 255, 255) &lt;SPAN style="color: #808080;"&gt;'White&lt;/SPAN&gt;

&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oLine&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;SketchLine&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oSketch&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;SketchLines&lt;/SPAN&gt;(2)
&lt;SPAN style="color: #800000;"&gt;oLine&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;OverrideColor&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oColor&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;oLine&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;LineWeight&lt;/SPAN&gt; = 2 &lt;SPAN style="color: #808080;"&gt;'Set Lineweight&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;Identifying a specific line is a bit difficult. You could use RefKeys like @Anonymous&lt;/a&gt; is doing here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-customization/change-sketch-constraints-programmatically-ilogic/td-p/9542773" target="_blank" rel="noopener"&gt;https://forums.autodesk.com/t5/inventor-customization/change-sketch-constraints-programmatically-ilogic/td-p/9542773&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you have the sketch visible though, maybe it's enough to just have the user pick the line like this?&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #808080;"&gt;'Get the sketchLine&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oLine&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;SketchLine&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;CommandManager&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Pick&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;SelectionFilterEnum&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;kSketchCurveLinearFilter&lt;/SPAN&gt;, &lt;SPAN style="color: #008080;"&gt;"Pick the sketchline"&lt;/SPAN&gt;)
&lt;SPAN style="color: #808080;"&gt;'Set the color&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;oLine&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;OverrideColor&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TransientObjects&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;CreateColor&lt;/SPAN&gt;(255, 255, 255)
&lt;SPAN style="color: #808080;"&gt;'Set the line weight&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;oLine&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;LineWeight&lt;/SPAN&gt; = 2&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 07:34:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-color-and-thickness-of-sketch-line/m-p/9547743#M111480</guid>
      <dc:creator>JhoelForshav</dc:creator>
      <dc:date>2020-05-29T07:34:24Z</dc:date>
    </item>
    <item>
      <title>Re: change color and thickness  of sketch line</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-color-and-thickness-of-sketch-line/m-p/9547950#M111484</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;A href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5330176" target="_self"&gt;JhoelForshav&lt;/A&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;I have tried your first code. and I have error in the rule. - Memember not found......&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;I think, that problem is in this row:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oSketch&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PlanarSketch&lt;/SPAN&gt; = &lt;FONT face="arial black,avant garde"&gt;&lt;SPAN&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN&gt;Sketches&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(&lt;SPAN&gt;"sketch name"&lt;/SPAN&gt;)&lt;/FONT&gt; &lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Do you know why?&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 09:20:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-color-and-thickness-of-sketch-line/m-p/9547950#M111484</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-29T09:20:07Z</dc:date>
    </item>
    <item>
      <title>Re: change color and thickness  of sketch line</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-color-and-thickness-of-sketch-line/m-p/9547956#M111485</link>
      <description>&lt;P&gt;@Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You must replace "sketch name" with the name of the sketch that the line is in &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;Ex:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oSketch&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;PlanarSketch&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Sketches&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"Sketch1"&lt;/SPAN&gt;) &amp;nbsp;&lt;/PRE&gt;</description>
      <pubDate>Fri, 29 May 2020 09:26:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-color-and-thickness-of-sketch-line/m-p/9547956#M111485</guid>
      <dc:creator>JhoelForshav</dc:creator>
      <dc:date>2020-05-29T09:26:53Z</dc:date>
    </item>
    <item>
      <title>Re: change color and thickness  of sketch line</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-color-and-thickness-of-sketch-line/m-p/9548035#M111489</link>
      <description>&lt;P&gt;Or did I misunderstand maybe. Do you want to run the rule from an assemmbly and find a sketch by a specific name in any of the occurrences in the assembly?&lt;/P&gt;&lt;P&gt;Then something like this maybe?&lt;/P&gt;&lt;P&gt;This rule changes the color and thickness of sketchline(2) in all sketches with the selected name within any component in the assembly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oAsm&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;AssemblyDocument&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Document&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oSketchName&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt; = &lt;SPAN style="color: #008080;"&gt;"Sketch1"&lt;/SPAN&gt; &lt;SPAN style="color: #808080;"&gt;'Name of the sketch&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Each&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRefDoc&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Document&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;In&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oAsm&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;AllReferencedDocuments&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRefDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;DocumentType&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;DocumentTypeEnum&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;kAssemblyDocumentObject&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Or&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRefDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;DocumentType&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;DocumentTypeEnum&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;kPartDocumentObject&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oAsm&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Occurrences&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;AllReferencedOccurrences&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oRefDoc&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;Count&lt;/SPAN&gt; &amp;gt; 0
		&lt;SPAN style="color: #ff0000;"&gt;Try&lt;/SPAN&gt;
			&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oSketch&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;PlanarSketch&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oRefDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Sketches&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oSketchName&lt;/SPAN&gt;) &lt;SPAN style="color: #808080;"&gt;'sketch name = Name of sketch&lt;/SPAN&gt;
			&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oColor&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Color&lt;/SPAN&gt;
			&lt;SPAN style="color: #800000;"&gt;oColor&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TransientObjects&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;CreateColor&lt;/SPAN&gt;(255, 255, 255) &lt;SPAN style="color: #808080;"&gt;'White&lt;/SPAN&gt;

			&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oLine&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;SketchLine&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oSketch&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;SketchLines&lt;/SPAN&gt;(2)
			&lt;SPAN style="color: #800000;"&gt;oLine&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;OverrideColor&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oColor&lt;/SPAN&gt;
			&lt;SPAN style="color: #800000;"&gt;oLine&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;LineWeight&lt;/SPAN&gt; = 2 &lt;SPAN style="color: #808080;"&gt;'Set Lineweight&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;Catch&lt;/SPAN&gt;
			&lt;SPAN style="color: #808080;"&gt;'Sketch is not in document or Sketchline with selected index not in sketch&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Try&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;

&lt;SPAN style="color: #800080;"&gt;iLogicVb&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;UpdateWhenDone&lt;/SPAN&gt; = &lt;SPAN style="color: #ff0000;"&gt;True&lt;/SPAN&gt;
&lt;/PRE&gt;</description>
      <pubDate>Fri, 29 May 2020 10:02:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-color-and-thickness-of-sketch-line/m-p/9548035#M111489</guid>
      <dc:creator>JhoelForshav</dc:creator>
      <dc:date>2020-05-29T10:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: change color and thickness  of sketch line</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-color-and-thickness-of-sketch-line/m-p/9548060#M111490</link>
      <description>&lt;P&gt;Yes I know. This I did and I have this error&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 10:14:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-color-and-thickness-of-sketch-line/m-p/9548060#M111490</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-29T10:14:47Z</dc:date>
    </item>
    <item>
      <title>Re: change color and thickness  of sketch line</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-color-and-thickness-of-sketch-line/m-p/9548069#M111491</link>
      <description>&lt;P&gt;@Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you see my last post? &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;</description>
      <pubDate>Fri, 29 May 2020 10:20:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-color-and-thickness-of-sketch-line/m-p/9548069#M111491</guid>
      <dc:creator>JhoelForshav</dc:creator>
      <dc:date>2020-05-29T10:20:08Z</dc:date>
    </item>
    <item>
      <title>Re: change color and thickness  of sketch line</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-color-and-thickness-of-sketch-line/m-p/9548111#M111493</link>
      <description>&lt;P&gt;now yes. I´m trying it&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 10:38:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-color-and-thickness-of-sketch-line/m-p/9548111#M111493</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-29T10:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: change color and thickness  of sketch line</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-color-and-thickness-of-sketch-line/m-p/9548523#M111508</link>
      <description>&lt;P&gt;Ok. I have tangled head.&amp;nbsp;&lt;/P&gt;&lt;P&gt;First I want say that second rule is ok - run. no problem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First rule: I made part- .ipt. I created rectanguler sketch and model. This rule I have tried on rectangle sketch.&lt;/P&gt;&lt;P&gt;when I have open only this part. This rule write error with membernotfound...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then I have tried the last (third rule) - I made assambly- .iam . I put the part with rectangle sketch. I have tried third rule on sketch of part. No problem. This rule run.&lt;/P&gt;&lt;P&gt;then I have tried made only rectanguler sketch in assambly with part. And first rule I put in the assambly and run!.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then I found out that when I have open assembly and I open part. - First rule run in part (but condition is that you must have open assembly)&lt;BR /&gt;Then I tried closed all files and open only part and first rule wrote error with memeber&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So it means I don´t know why, that first rule run in part, when I have open assembly with part.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you know why??&lt;/P&gt;&lt;P&gt;Do you understand me what I mean? &lt;img class="lia-deferred-image lia-image-emoji" src="https://forums.autodesk.com/html/@F982DDE76110C67DBDB6AF220B48480A/emoticons/1f604.png" alt=":grinning_face_with_smiling_eyes:" title=":grinning_face_with_smiling_eyes:" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 13:05:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-color-and-thickness-of-sketch-line/m-p/9548523#M111508</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-29T13:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: change color and thickness  of sketch line</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-color-and-thickness-of-sketch-line/m-p/9548561#M111509</link>
      <description>&lt;P&gt;I think I understand what you want now.&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #ff0000;"&gt;Sub&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Main&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oSketchName&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt; = &lt;SPAN style="color: #008080;"&gt;"Sketch1"&lt;/SPAN&gt; &lt;SPAN style="color: #808080;"&gt;'Name of the sketch&lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;updateLine&lt;/SPAN&gt;(&lt;SPAN style="color: #800080;"&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Document&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;oSketchName&lt;/SPAN&gt;)
	&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800080;"&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Document&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;DocumentType&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;DocumentTypeEnum&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;kAssemblyDocumentObject&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oAsm&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;AssemblyDocument&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Document&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Each&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRefDoc&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Document&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;In&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oAsm&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;AllReferencedDocuments&lt;/SPAN&gt;
			&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRefDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;DocumentType&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;DocumentTypeEnum&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;kAssemblyDocumentObject&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Or&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRefDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;DocumentType&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;DocumentTypeEnum&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;kPartDocumentObject&lt;/SPAN&gt;
				&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oAsm&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Occurrences&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;AllReferencedOccurrences&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oRefDoc&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;Count&lt;/SPAN&gt; &amp;gt; 0
					&lt;SPAN style="color: #800000;"&gt;updateLine&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oRefDoc&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;oSketchName&lt;/SPAN&gt;)
				&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
			&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;

	&lt;SPAN style="color: #800080;"&gt;iLogicVb&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;UpdateWhenDone&lt;/SPAN&gt; = &lt;SPAN style="color: #ff0000;"&gt;True&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Sub&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Sub&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;updateLine&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Document&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;oName&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;String&lt;/SPAN&gt;)
	&lt;SPAN style="color: #ff0000;"&gt;Try&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oSketch&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;PlanarSketch&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Sketches&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oName&lt;/SPAN&gt;) &lt;SPAN style="color: #808080;"&gt;'sketch name = Name of sketch&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oColor&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Color&lt;/SPAN&gt;
		&lt;SPAN style="color: #800000;"&gt;oColor&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TransientObjects&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;CreateColor&lt;/SPAN&gt;(255, 255, 255) &lt;SPAN style="color: #808080;"&gt;'White&lt;/SPAN&gt;

		&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oLine&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;SketchLine&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oSketch&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;SketchLines&lt;/SPAN&gt;(2)
		&lt;SPAN style="color: #800000;"&gt;oLine&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;OverrideColor&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oColor&lt;/SPAN&gt;
		&lt;SPAN style="color: #800000;"&gt;oLine&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;LineWeight&lt;/SPAN&gt; = 2 &lt;SPAN style="color: #808080;"&gt;'Set Lineweight&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Catch&lt;/SPAN&gt;
		&lt;SPAN style="color: #808080;"&gt;'Sketch is not in document or Sketchline with selected index not in sketch&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Try&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Sub&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 29 May 2020 13:18:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-color-and-thickness-of-sketch-line/m-p/9548561#M111509</guid>
      <dc:creator>JhoelForshav</dc:creator>
      <dc:date>2020-05-29T13:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: change color and thickness  of sketch line</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-color-and-thickness-of-sketch-line/m-p/9548633#M111511</link>
      <description>&lt;P&gt;Ok. Thanks for your help.&lt;/P&gt;&lt;P&gt;Only for information in assembly works all your command. In part I have problem with first rule....&amp;nbsp;&lt;/P&gt;&lt;P&gt;The last question (this week &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;1. command for change style of line in chart ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;nice a weekend&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 13:46:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/change-color-and-thickness-of-sketch-line/m-p/9548633#M111511</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-29T13:46:44Z</dc:date>
    </item>
  </channel>
</rss>

