<?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: Polyline 2D Create in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11923888#M9021</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm not exactly sure what you're trying to do but I usually draw a polyline similar to below. Just extrapolate for you're own needs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;acPoly = new Polyline();&lt;/P&gt;&lt;P&gt;acPoly.SetDatabaseDefaults();&lt;/P&gt;&lt;P&gt;acPoly.AddVertexAt(0, new Point2d(ptStart2.X, ptStart2.Y), 0, wid, wid);&lt;/P&gt;&lt;P&gt;acPoly.AddVertexAt(1, new Point2d(ptStart2.X + border2X, ptStart2.Y), 0, wid, wid);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 26 Apr 2023 17:28:44 GMT</pubDate>
    <dc:creator>GeeHaa</dc:creator>
    <dc:date>2023-04-26T17:28:44Z</dc:date>
    <item>
      <title>Polyline 2D Create</title>
      <link>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11923650#M9019</link>
      <description>&lt;P&gt;Hello everyone&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I am creating a polyline from the points in the datagridview.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The problem is ;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ucs draws a polyline from where the icon is...&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I want to do; it just draws the given coordinates... how should I change that. ?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;so it should draw from the first coordinate...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance for the help friend.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;  acPoly.AddVertexAt(acPoly.NumberOfVertices, ikiDpoint, 0, 0, 0);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Apr 2023 15:56:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11923650#M9019</guid>
      <dc:creator>k005</dc:creator>
      <dc:date>2023-04-26T15:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: Polyline 2D Create</title>
      <link>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11923783#M9020</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/537692"&gt;@k005&lt;/a&gt;&amp;nbsp;You need to provide more information.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;I am creating a polyline from the points in the datagridview.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Okay, I am assuming you are using some sort of form. Need to know more about your dataGridView.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;ucs draws a polyline from where the icon is..&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you mean that it is drawing from 0,0? Or that one of the points is 0,0? Or what icon are you referring to?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;I want to do; it just draws the given coordinates... how should I change that. ?&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need to see more than just the one line of code that your provide.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Apr 2023 16:50:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11923783#M9020</guid>
      <dc:creator>hippe013</dc:creator>
      <dc:date>2023-04-26T16:50:22Z</dc:date>
    </item>
    <item>
      <title>Re: Polyline 2D Create</title>
      <link>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11923888#M9021</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm not exactly sure what you're trying to do but I usually draw a polyline similar to below. Just extrapolate for you're own needs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;acPoly = new Polyline();&lt;/P&gt;&lt;P&gt;acPoly.SetDatabaseDefaults();&lt;/P&gt;&lt;P&gt;acPoly.AddVertexAt(0, new Point2d(ptStart2.X, ptStart2.Y), 0, wid, wid);&lt;/P&gt;&lt;P&gt;acPoly.AddVertexAt(1, new Point2d(ptStart2.X + border2X, ptStart2.Y), 0, wid, wid);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Apr 2023 17:28:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11923888#M9021</guid>
      <dc:creator>GeeHaa</dc:creator>
      <dc:date>2023-04-26T17:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: Polyline 2D Create</title>
      <link>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11924965#M9022</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1633394"&gt;@hippe013&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/82892"&gt;@GeeHaa&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am sorry. The question was a bit rushed.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I explain in the attached pictures.&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="1.png" style="width: 502px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1207337iC62B6C657FF64E7F/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1207339i64B518EA278D7BBD/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.png" alt="2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2023 04:38:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11924965#M9022</guid>
      <dc:creator>k005</dc:creator>
      <dc:date>2023-04-27T04:38:34Z</dc:date>
    </item>
    <item>
      <title>Re: Polyline 2D Create</title>
      <link>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11924967#M9023</link>
      <description>&lt;P&gt;I will try this. I have to go now...&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2023 04:39:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11924967#M9023</guid>
      <dc:creator>k005</dc:creator>
      <dc:date>2023-04-27T04:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: Polyline 2D Create</title>
      <link>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11926980#M9024</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/537692"&gt;@k005&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To avoid this thread becoming a waste of effort and bandwidth you should post your code (relevant complete portion) along with a description of your expectations.&lt;BR /&gt;This way your peers will have an unambiguous starting point for helping you.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2023 21:16:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11926980#M9024</guid>
      <dc:creator>kerry_w_brown</dc:creator>
      <dc:date>2023-04-27T21:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: Polyline 2D Create</title>
      <link>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11927081#M9025</link>
      <description>&lt;P&gt;Perhaps something like this will give you some ideas :&lt;BR /&gt;Note this is proof of concept, without error checking etc.&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;[CommandMethod("DrawPline")]
public void TestDrawPline()
{
   Document doc = AcadApp.DocumentManager.MdiActiveDocument;
   Database db = doc.Database;
   Editor ed = doc.Editor;

   Point2dCollection point2Ds = new Point2dCollection() 
   {
      new Point2d(216, 230),
      new Point2d(478, 230),
      new Point2d(478, 85),
      new Point2d(216, 84)
   };


   using (var tr = db.TransactionManager.StartTransaction())
   {
      // Open Model space for write
      var dbBlockTable = (BlockTable)tr.GetObject(
         db.BlockTableId, OpenMode.ForRead);

      var msBlockTableRecord = (BlockTableRecord)tr.GetObject(
         dbBlockTable[BlockTableRecord.ModelSpace], OpenMode.ForWrite);

      var pline = DrawPolyline(point2Ds, 0);
      pline.Closed = true;
      msBlockTableRecord.AppendEntity(pline);
      tr.AddNewlyCreatedDBObject(pline, true);
      tr.Commit();
   }
}
public static Polyline DrawPolyline(Point2dCollection pts, double width)
{
   var pline = new Polyline();
   pline.SetDatabaseDefaults();
   for (int i = 0; i &amp;lt; pts.Count; i++)
   {
      pline.AddVertexAt(i, pts[i], 0, width, width);
   }
   return pline;
}&lt;/LI-CODE&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="TestDrawPline 2023-04-28_10-16-36.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1207746iDA9D0D79815013F1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="TestDrawPline 2023-04-28_10-16-36.png" alt="TestDrawPline 2023-04-28_10-16-36.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;Regards,&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2023 22:23:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11927081#M9025</guid>
      <dc:creator>kerry_w_brown</dc:creator>
      <dc:date>2023-04-27T22:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: Polyline 2D Create</title>
      <link>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11927508#M9026</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/529262"&gt;@kerry_w_brown&lt;/a&gt;&amp;nbsp; Here is the whole code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt; private void btnKordinatCiz_Click(object sender, EventArgs e)
        {
            this.Hide();
            Aapp.Document acDoc = aCap.DocumentManager.MdiActiveDocument;
           Database acCurDb = acDoc.Database;


            using (Transaction acTrans = acCurDb.TransactionManager.StartTransaction())
            using (Aapp.DocumentLock docLock = Adoc.LockDocument())

            {
                BlockTable acBlkTbl;
                acBlkTbl = acTrans.GetObject(acCurDb.BlockTableId, Adb.OpenMode.ForRead) as BlockTable;
                BlockTableRecord acBlkTblRec;
                acBlkTblRec = acTrans.GetObject(acBlkTbl[BlockTableRecord.ModelSpace], Adb.OpenMode.ForWrite) as BlockTableRecord;

                Polyline acPoly = new Polyline();
                acPoly.SetDatabaseDefaults();
                var noktalar = new List&amp;lt;Point2d&amp;gt;();
               

                foreach (DataGridViewRow dgvr in dataGridView1.Rows)
                {
                    var x = Convert.ToDouble(dgvr.Cells[1].Value);
                    var y = Convert.ToDouble(dgvr.Cells[2].Value);
                    var z = Convert.ToDouble(dgvr.Cells[3].Value);
                  
                    var point = new Point3d(x, y, z);
                    var ikiDpoint = new Point2d(x, y);
                    noktalar.Add(ikiDpoint);

                    using (var acPoint = new DBPoint(point))
                    {
                        acBlkTblRec.AppendEntity(acPoint);
                        acTrans.AddNewlyCreatedDBObject(acPoint, true);
                        //acPoly.ColorIndex = 1;
                        //acPoly.Closed = false;
                        //acPoly.AddVertexAt(acPoly.NumberOfVertices, ikiDpoint, 0, 0, 0);
                        //acPoly.AddVertexAt(0, new Point2d(point.X, point.Y), 0, 0, 0);

                    }
                   
                }

                acBlkTblRec.AppendEntity(acPoly);
                acTrans.AddNewlyCreatedDBObject(acPoly, true);
                acTrans.Commit();
                this.Close();
                aCap.SetSystemVariable("pdmode", 34);
                ZoomExtents();
            }
        }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 05:40:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11927508#M9026</guid>
      <dc:creator>k005</dc:creator>
      <dc:date>2023-04-28T05:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: Polyline 2D Create</title>
      <link>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11927813#M9027</link>
      <description>&lt;P&gt;I'm pretty sure, after you iterate through the dataGridView,&amp;nbsp; you could call a method similar to the &lt;EM&gt;DrawPolyline&lt;/EM&gt; I posted that takes your &lt;EM&gt;list noktalar&amp;nbsp; &lt;/EM&gt;instead of the&amp;nbsp;&amp;nbsp;&lt;EM&gt;Point2dCollection&amp;nbsp;&lt;/EM&gt;&amp;nbsp;&lt;EM&gt;point2Ds&lt;/EM&gt; that I used.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;. . . or you could just add the code in-line to the body of your method&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I like to separate functionality, mainly for testing, but there's no rule that says you have to.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Be sure to add a couple of debug breakpoints in your testing code and view the values in the critical variables in the 'Locals' pane at each breakpoint, ( or while stepping through the code )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 08:57:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11927813#M9027</guid>
      <dc:creator>kerry_w_brown</dc:creator>
      <dc:date>2023-04-28T08:57:13Z</dc:date>
    </item>
    <item>
      <title>Ynt: Polyline 2D Create</title>
      <link>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11928364#M9029</link>
      <description>&lt;P&gt;It appears that the issue is that you are iterating through every row of the data grid view. The very bottom row is an empty row. That is where you are creating the point at 0,0 and adding it to your polyline. Does this appear to be the case? You may want to test for that bottom row so that it doesn't get added.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 13:21:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11928364#M9029</guid>
      <dc:creator>hippe013</dc:creator>
      <dc:date>2023-04-28T13:21:33Z</dc:date>
    </item>
    <item>
      <title>Ynt: Polyline 2D Create</title>
      <link>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11928935#M9030</link>
      <description>&lt;P&gt;So how can I remove the last empty datagridview1 row?&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 16:47:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11928935#M9030</guid>
      <dc:creator>k005</dc:creator>
      <dc:date>2023-04-28T16:47:59Z</dc:date>
    </item>
    <item>
      <title>Ynt: Polyline 2D Create</title>
      <link>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11929244#M9031</link>
      <description>&lt;P&gt;Instead of doing for each row...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt; foreach (DataGridViewRow dgvr in dataGridView1.Rows)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Get the row count and minus one from it. (As long as you are certain that the grid will always contain an empty row.) Then use a simple for loop.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 19:37:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11929244#M9031</guid>
      <dc:creator>hippe013</dc:creator>
      <dc:date>2023-04-28T19:37:32Z</dc:date>
    </item>
    <item>
      <title>Re: Polyline 2D Create</title>
      <link>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11929345#M9032</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Perhaps try&amp;nbsp;&lt;BR /&gt;(untested, may require test for null or string.empty&amp;nbsp; on cells.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;foreach (DataGridViewRow dgvr in dataGridView1.Rows)
{
   if (dgvr.IsNewRow) {continue;}
   //else read cells
   // . . .  
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;added:&lt;BR /&gt;Have you actually set a debug breakpoint to check the value of&amp;nbsp;&lt;EM&gt;noktalar&lt;/EM&gt;&amp;nbsp; or stepped through the foreach in debug to actually see what is happening ??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;added:&lt;BR /&gt;I assume you are handling the DataGrid as part of your process.&lt;BR /&gt;If so, perhaps remove empty rows before saving/proceeding.&lt;BR /&gt;eg:&amp;nbsp;&lt;A href="https://codepedia.info/delete-empty-null-rows-datatable" target="_blank" rel="noopener"&gt;https://codepedia.info/delete-empty-null-rows-datatable&amp;nbsp;&amp;nbsp; (thanks mrs google )&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 21:09:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11929345#M9032</guid>
      <dc:creator>kerry_w_brown</dc:creator>
      <dc:date>2023-04-28T21:09:33Z</dc:date>
    </item>
    <item>
      <title>Re: Polyline 2D Create</title>
      <link>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11929842#M9033</link>
      <description>&lt;P&gt;Thank you very much. Ok. &lt;span class="lia-unicode-emoji" title=":hugging_face:"&gt;🤗&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/529262"&gt;@kerry_w_brown&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1633394"&gt;@hippe013&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/82892"&gt;@GeeHaa&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 29 Apr 2023 04:32:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/polyline-2d-create/m-p/11929842#M9033</guid>
      <dc:creator>k005</dc:creator>
      <dc:date>2023-04-29T04:32:10Z</dc:date>
    </item>
  </channel>
</rss>

