<?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: How to jig the multiple entities (Not full entity..Part/Portion of entity)(Polyline+Block) with C# in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11822751#M9567</link>
    <description>&lt;P&gt;what code do you have so far? can you provide screen shots of what you are trying to accomplish - before and after?&lt;/P&gt;</description>
    <pubDate>Wed, 15 Mar 2023 11:44:59 GMT</pubDate>
    <dc:creator>fieldguy</dc:creator>
    <dc:date>2023-03-15T11:44:59Z</dc:date>
    <item>
      <title>How to jig the multiple entities (Not full entity..Part/Portion of entity)(Polyline+Block) with C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11822698#M9566</link>
      <description>&lt;P&gt;If the multiple polylines are connected at one block..i need to jig the block and some portion of the polyline which cover close to the block&lt;/P&gt;</description>
      <pubDate>Wed, 15 Mar 2023 11:24:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11822698#M9566</guid>
      <dc:creator>b_karunakar75</dc:creator>
      <dc:date>2023-03-15T11:24:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to jig the multiple entities (Not full entity..Part/Portion of entity)(Polyline+Block) with C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11822751#M9567</link>
      <description>&lt;P&gt;what code do you have so far? can you provide screen shots of what you are trying to accomplish - before and after?&lt;/P&gt;</description>
      <pubDate>Wed, 15 Mar 2023 11:44:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11822751#M9567</guid>
      <dc:creator>fieldguy</dc:creator>
      <dc:date>2023-03-15T11:44:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to jig the multiple entities (Not full entity..Part/Portion of entity)(Polyline+Block) with C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11833221#M9568</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jig1.PNG" style="width: 477px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1190769i98264E6CC53C0288/image-size/large?v=v2&amp;amp;px=999" role="button" title="jig1.PNG" alt="jig1.PNG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jig2.PNG" style="width: 538px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1190768i10A0812CA45A73A4/image-size/large?v=v2&amp;amp;px=999" role="button" title="jig2.PNG" alt="jig2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;public class AcSpliceMoveJig : EntityJig
    {
        List&amp;lt;Polyline&amp;gt; _Entities;
        Polyline m_pline;
        Point3d m_point;
        int m_index;
        Vector3d m_vector;
        double m_bulge;
        double m_sWidth;
        double m_eWidth;
        int _ecnt;
        //BlockReference m_Br;

        public  AcSpliceMoveJig(Polyline pline, Point3d point,List&amp;lt;Polyline&amp;gt; plinelst,int index, Vector3d vector, double bulge, double sWidth, double eWidth)
                     : base(pline)
        {
            //m_pline = pline;
            _Entities = plinelst;
            m_point = point;
            m_index = index;
            m_vector = vector;
            m_bulge = bulge;
            m_sWidth = sWidth;
            m_eWidth = eWidth;
            _ecnt = 0;
            //m_Br = br;
        }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2023 08:09:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11833221#M9568</guid>
      <dc:creator>b_karunakar75</dc:creator>
      <dc:date>2023-03-20T08:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to jig the multiple entities (Not full entity..Part/Portion of entity)(Polyline+Block) with C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11833518#M9569</link>
      <description>&lt;P&gt;do you have code where the user selects something? what is the selection criteria? is it always 2 polylines joined at a block insert?&lt;/P&gt;&lt;P&gt;maybe you can move the block by itself and change the endpoints after a successful jig (first pline vertex of p2 and last vertex of p1).&lt;/P&gt;&lt;P&gt;there are several examples available of block jig.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.keanw.com/2015/05/jigging-an-autocad-block-with-attributes-using-net-redux.html" target="_blank" rel="noopener"&gt;https://www.keanw.com/2015/05/jigging-an-autocad-block-with-attributes-using-net-redux.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.keanw.com/2007/05/using_a_jig_fro.html" target="_blank" rel="noopener"&gt;https://www.keanw.com/2007/05/using_a_jig_fro.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2023 10:32:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11833518#M9569</guid>
      <dc:creator>fieldguy</dc:creator>
      <dc:date>2023-03-20T10:32:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to jig the multiple entities (Not full entity..Part/Portion of entity)(Polyline+Block) with C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11833672#M9570</link>
      <description>&lt;P class="lia-align-left"&gt;Here user will select the block entity..Then getting the connected poly lines by relation.one or more poly lines connected at the block.i want a jig functionality which will work with poly lines and block all at the same time as i mentioned in the screenshot.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2023 12:03:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11833672#M9570</guid>
      <dc:creator>b_karunakar75</dc:creator>
      <dc:date>2023-03-20T12:03:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to jig the multiple entities (Not full entity..Part/Portion of entity)(Polyline+Block) with C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11833687#M9571</link>
      <description>&lt;P&gt;Means how to pass the multiple entities(poly lines and block) to the entity jig&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2023 12:09:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11833687#M9571</guid>
      <dc:creator>b_karunakar75</dc:creator>
      <dc:date>2023-03-20T12:09:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to jig the multiple entities (Not full entity..Part/Portion of entity)(Polyline+Block) with C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11834347#M9572</link>
      <description>&lt;P&gt;Since your goal is to modify existing entities (changing the block reference's Position and the start/end points of connected lines/end segment of polylines, you would be DrawJig, not EntityJig. You could also easily do it by handling Editor.PointMonitor event during the call of Editor.GetPoint(), where you drawing Transient graphics to visually show the hint of entities being moved.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2023 16:41:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11834347#M9572</guid>
      <dc:creator>norman.yuan</dc:creator>
      <dc:date>2023-03-20T16:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to jig the multiple entities (Not full entity..Part/Portion of entity)(Polyline+Block) with C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11834354#M9573</link>
      <description>If any code plz share with me.&lt;BR /&gt;</description>
      <pubDate>Mon, 20 Mar 2023 16:45:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11834354#M9573</guid>
      <dc:creator>b_karunakar75</dc:creator>
      <dc:date>2023-03-20T16:45:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to jig the multiple entities (Not full entity..Part/Portion of entity)(Polyline+Block) with C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11834602#M9574</link>
      <description>&lt;P&gt;I'll see if I can find a bit of time later today, or tomorrow.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Mar 2023 18:52:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11834602#M9574</guid>
      <dc:creator>norman.yuan</dc:creator>
      <dc:date>2023-03-20T18:52:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to jig the multiple entities (Not full entity..Part/Portion of entity)(Polyline+Block) with C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11835288#M9575</link>
      <description>&lt;P&gt;As usual, I posted fully working code with companion video clip here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://drive-cad-with-code.blogspot.com/2023/03/using-custom-jig-to-transform-group-of.html" target="_blank" rel="noopener"&gt;https://drive-cad-with-code.blogspot.com/2023/03/using-custom-jig-to-transform-group-of.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope it helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2023 02:02:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11835288#M9575</guid>
      <dc:creator>norman.yuan</dc:creator>
      <dc:date>2023-03-21T02:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to jig the multiple entities (Not full entity..Part/Portion of entity)(Polyline+Block) with C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11835890#M9576</link>
      <description>&lt;P&gt;Hi..It is working fine for poly lines connected/ended at the block position.but if the block is at somewhere on the poly line it need ti get the before and after vertices from the block..This case not working fine.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2023 10:00:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11835890#M9576</guid>
      <dc:creator>b_karunakar75</dc:creator>
      <dc:date>2023-03-21T10:00:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to jig the multiple entities (Not full entity..Part/Portion of entity)(Polyline+Block) with C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11835909#M9577</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jig3.PNG" style="width: 572px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1191269i74C7F6061F7FBEE4/image-size/large?v=v2&amp;amp;px=999" role="button" title="jig3.PNG" alt="jig3.PNG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jig4.PNG" style="width: 887px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1191270iA663049E07BFBF4B/image-size/large?v=v2&amp;amp;px=999" role="button" title="jig4.PNG" alt="jig4.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2023 10:07:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11835909#M9577</guid>
      <dc:creator>b_karunakar75</dc:creator>
      <dc:date>2023-03-21T10:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to jig the multiple entities (Not full entity..Part/Portion of entity)(Polyline+Block) with C#</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11837909#M9578</link>
      <description>&lt;P&gt;Well, the original question is about jigging multiple entities, thus I suggested DrawJig or custom "Jig" with Transient/Editor.PointMonitor. Now that my article demonstrates how to "jig" multiple entities, it should not be difficult to figure it out how to change the lines/polylines that connect to the block's insertion point in different way.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now that I promised I might post code with a subclassed DrawJig, I decided do it with polylines connected to the block insertion point in different ways. So, go to here to read my second post on this topic:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://drive-cad-with-code.blogspot.com/2023/03/using-custom-jig-to-transform-group-of_21.html" target="_blank" rel="noopener"&gt;https://drive-cad-with-code.blogspot.com/2023/03/using-custom-jig-to-transform-group-of_21.html&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Mar 2023 00:59:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-jig-the-multiple-entities-not-full-entity-part-portion-of/m-p/11837909#M9578</guid>
      <dc:creator>norman.yuan</dc:creator>
      <dc:date>2023-03-22T00:59:29Z</dc:date>
    </item>
  </channel>
</rss>

