<?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: Select object inside a polyline in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/select-object-inside-a-polyline/m-p/6020170#M37263</link>
    <description>&lt;P&gt;I am sorry that doesn't work and not what I wanted.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your program makes an offset of the selected polyline then it selected EVERYTHING .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Tue, 02 Feb 2016 17:21:44 GMT</pubDate>
    <dc:creator>J-Rocks</dc:creator>
    <dc:date>2016-02-02T17:21:44Z</dc:date>
    <item>
      <title>Select object inside a polyline</title>
      <link>https://forums.autodesk.com/t5/net-forum/select-object-inside-a-polyline/m-p/6018866#M37259</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to select Lines and Circles that reside inside a polyline but I failed , can anyone point me to the error in my&amp;nbsp;codes please?&lt;/P&gt;&lt;P&gt;Is there any other way than highlight method to select objects as if you are selecting them in Autocad ? I mean selection with grips .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;        public static void HighLightObjects()
        {
            Document doc = Application.DocumentManager.MdiActiveDocument;
            Database db = doc.Database;
            Editor ed = doc.Editor;
          
            PromptEntityOptions sel = new PromptEntityOptions("\nSelect Polyline :");
            sel.SetRejectMessage("Must be Polyline");
            sel.AddAllowedClass(typeof(Polyline), true);
            sel.AllowNone = false;
            PromptEntityResult s = ed.GetEntity(sel);
            if (s.Status == PromptStatus.OK)
            {
                using (Transaction trans = db.TransactionManager.StartTransaction())
                {
                    try
                    {
                        Polyline pl = (Polyline)trans.GetObject(s.ObjectId, OpenMode.ForRead);
                        Double len = pl.Length;
                        Double dis = len / 250;
                        Double gap = dis;
                        int run = ((int)dis);
                        Point3dCollection lst = new Point3dCollection();
                        lst.Add(pl.GetPointAtParameter(0));
                        for (int i = 0; i &amp;lt; run; i++)
                        {
                            Point3d p = pl.GetPointAtDist(dis);
                            dis = dis + gap;
                            lst.Add(p);
                        }
                        PromptSelectionOptions ss = new PromptSelectionOptions();
                        TypedValue[] tv = { new TypedValue(0, "CIRCLE"), new TypedValue (0 , "LINE") };
                        SelectionFilter ftr = new SelectionFilter(tv);
                        PromptSelectionResult res = ed.SelectCrossingPolygon(lst, ftr);
                        if (res.Status == PromptStatus.OK)
                        {
                            foreach (var item in res.Value.GetObjectIds())
                            {
                                Entity c = (Entity)trans.GetObject(item, OpenMode.ForRead);
                                c.Highlight();
                            }
                        }
                    }
                    catch (System.Exception ex)
                    {
                        ed.WriteMessage(ex.Message);
                    }                   
                }
            }
        }&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2016 06:04:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/select-object-inside-a-polyline/m-p/6018866#M37259</guid>
      <dc:creator>J-Rocks</dc:creator>
      <dc:date>2016-02-02T06:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: Select object inside a polyline</title>
      <link>https://forums.autodesk.com/t5/net-forum/select-object-inside-a-polyline/m-p/6018944#M37260</link>
      <description>&lt;P&gt;Are you trying to get objects (completely) inside a closed polyline, using somesort of offset? Why not then offset the Selected Polyline and then using the build in Selection Methodes? Becarefull with selecting objects not on screen.&lt;BR /&gt;Or do you want you're own algorithm to select inside (2D) polylines.&lt;BR /&gt;There have been posted several samples to do that, using just plan C code and using AutoCAD functions, such as with the help of Regional Objects.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2016 07:32:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/select-object-inside-a-polyline/m-p/6018944#M37260</guid>
      <dc:creator>SENL1362</dc:creator>
      <dc:date>2016-02-02T07:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: Select object inside a polyline</title>
      <link>https://forums.autodesk.com/t5/net-forum/select-object-inside-a-polyline/m-p/6018951#M37261</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am Trying to select all Lines and Circles inside a polyline&amp;nbsp;by selecting the&amp;nbsp;Polyline only.&lt;/P&gt;&lt;P&gt;Yes the objects are inside the selected polyline.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2016 07:34:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/select-object-inside-a-polyline/m-p/6018951#M37261</guid>
      <dc:creator>J-Rocks</dc:creator>
      <dc:date>2016-02-02T07:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: Select object inside a polyline</title>
      <link>https://forums.autodesk.com/t5/net-forum/select-object-inside-a-polyline/m-p/6019793#M37262</link>
      <description>&lt;P&gt;Youre problem is the Selection Filter:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #2b91af;"&gt;TypedValue&lt;/SPAN&gt;[]&amp;nbsp;tv&amp;nbsp;=&amp;nbsp;{&amp;nbsp;&lt;SPAN style="color: blue;"&gt;new&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN style="color: #2b91af;"&gt;TypedValue&lt;/SPAN&gt;(0,&amp;nbsp;&lt;SPAN style="color: #a31515;"&gt;"CIRCLE"&lt;/SPAN&gt;),&amp;nbsp;&lt;SPAN style="color: blue;"&gt;new&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN style="color: #2b91af;"&gt;TypedValue&lt;/SPAN&gt;(0,&amp;nbsp;&lt;SPAN style="color: #a31515;"&gt;"LINE"&lt;/SPAN&gt;)&amp;nbsp;};&lt;/PRE&gt;&lt;P&gt;Instead use:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN style="color: #2b91af;"&gt;TypedValue&lt;/SPAN&gt;[]&amp;nbsp;tv&amp;nbsp;=&amp;nbsp;{&amp;nbsp;&lt;SPAN style="color: blue;"&gt;new&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN style="color: #2b91af;"&gt;TypedValue&lt;/SPAN&gt;(0,&amp;nbsp;&lt;SPAN style="color: #a31515;"&gt;"CIRCLE,&amp;nbsp;LINE"&lt;/SPAN&gt;)&amp;nbsp;};&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN style="color: green;"&gt;//,&amp;nbsp;new&amp;nbsp;TypedValue(0,&amp;nbsp;"LINE")&amp;nbsp;};&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Or use the AND and OR items to build a complex Filter, like explained by Kean:&lt;/P&gt;&lt;P&gt;&lt;A href="http://through-the-interface.typepad.com/through_the_interface/2008/07/conditional-sel.html" target="_blank"&gt;http://through-the-interface.typepad.com/through_the_interface/2008/07/conditional-sel.html&lt;/A&gt;&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;PRE&gt;       [CommandMethod("SIP")]
        public static void SelectInsidePolyline()
        {
            Document doc = null;
            Database db = null;
            Editor ed = null;

            double plOffset = 10;

            try
            {
                doc = AcadApp.DocumentManager.MdiActiveDocument;
                if (doc == null)
                    throw new System.Exception("No MdiActiveDocument");
                db = doc.Database;
                ed = doc.Editor;


                TypedValue[] plTv = new TypedValue[] { new TypedValue(0, "LWPOLYLINE") };
                SelectionFilter plFlt = new SelectionFilter(plTv);
                PromptSelectionResult plSr = ed.GetSelection(plFlt);
                if (plSr.Status != PromptStatus.OK)
                    return;


                Point3dCollection polyPoints = null;
                using (Transaction tr = db.TransactionManager.StartTransaction())
                {
                    var curSpace = (BlockTableRecord)tr.GetObject(db.CurrentSpaceId, OpenMode.ForWrite);
                    foreach (SelectedObject obj in plSr.Value)
                    {
                        var pl = tr.GetObject(obj.ObjectId, OpenMode.ForRead) as Polyline;

                        
                        var offsetObjs = pl.GetOffsetCurves(plOffset);
                        var offPl = offsetObjs[0] as Polyline;
                        if (offPl.Area &amp;lt; pl.Area)
                        {
                            offPl.Erase();
                            offsetObjs = pl.GetOffsetCurves(-plOffset);
                        }

                        curSpace.AppendEntity(offPl);
                        tr.AddNewlyCreatedDBObject(offPl, true);

                        polyPoints = new Point3dCollection();
                        for (int i = 0; i &amp;lt; offPl.NumberOfVertices; i++)
                            polyPoints.Add(offPl.GetPoint3dAt(i));

                    }
                    tr.Commit();
                }
                if (polyPoints == null)
                    throw new System.Exception("Failed to calculate Polyline Points");

                PromptSelectionOptions ss = new PromptSelectionOptions();
                TypedValue[] tv = { new TypedValue(0, "CIRCLE"), new TypedValue(0, "LINE") };
                SelectionFilter ftr = new SelectionFilter(tv);
                PromptSelectionResult res = ed.SelectCrossingPolygon(polyPoints); //, ftr);
                if (res.Status != PromptStatus.OK)
                    return;
                using (Transaction tr = db.TransactionManager.StartTransaction())
                {
                    var curSpace = (BlockTableRecord)tr.GetObject(db.CurrentSpaceId, OpenMode.ForRead);

                    foreach (var item in res.Value.GetObjectIds())
                    {
                        Entity c = (Entity)tr.GetObject(item, OpenMode.ForRead);

                        c.Highlight();
                    }
                    tr.Commit();
                }

            }
            catch (System.Exception ex)
            {
                if (ed != null)
                    ed.WriteMessage("\n Error in SelectInsidePolyline: {0}", ex.Message);
            }
        }&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But be careful wil the ed.selectXXX functions because if the Selected Polyline is not completely visible the Inside Selection may not be complete.&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://forums.autodesk.com/t5/image/serverpage/image-id/215514i3DEFA3B32FA1FE97/image-size/original?v=mpbl-1&amp;amp;px=-1" alt="Screenshot_2.png" title="Screenshot_2.png" border="0" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And the Result is:&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://forums.autodesk.com/t5/image/serverpage/image-id/215515i4FD18BBFBFB4980A/image-size/original?v=mpbl-1&amp;amp;px=-1" alt="Screenshot_1.png" title="Screenshot_1.png" border="0" /&gt;&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;</description>
      <pubDate>Tue, 02 Feb 2016 15:14:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/select-object-inside-a-polyline/m-p/6019793#M37262</guid>
      <dc:creator>SENL1362</dc:creator>
      <dc:date>2016-02-02T15:14:01Z</dc:date>
    </item>
    <item>
      <title>Re: Select object inside a polyline</title>
      <link>https://forums.autodesk.com/t5/net-forum/select-object-inside-a-polyline/m-p/6020170#M37263</link>
      <description>&lt;P&gt;I am sorry that doesn't work and not what I wanted.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your program makes an offset of the selected polyline then it selected EVERYTHING .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2016 17:21:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/select-object-inside-a-polyline/m-p/6020170#M37263</guid>
      <dc:creator>J-Rocks</dc:creator>
      <dc:date>2016-02-02T17:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: Select object inside a polyline</title>
      <link>https://forums.autodesk.com/t5/net-forum/select-object-inside-a-polyline/m-p/6020437#M37264</link>
      <description>&lt;P&gt;&lt;BR /&gt;You can use youre own code, just change the second filter into&lt;BR /&gt;TypedValue[] tv = { new TypedValue(0, "CIRCLE, LINE") };&lt;BR /&gt;&lt;BR /&gt;You can use my code and filter on Circles and Lines if you add the filter to the Selection methode:&lt;/P&gt;&lt;P&gt;change:&lt;/P&gt;&lt;P&gt;PromptSelectionResult res = ed.SelectCrossingPolygon(polyPoints); //, ftr);&lt;BR /&gt;into:&lt;BR /&gt;PromptSelectionResult res = ed.SelectCrossingPolygon(polyPoints, ftr);&lt;BR /&gt;and it will select Circles and lines within the polyline.&lt;BR /&gt;If you do not want the Offset Polyline, then remove that part of the code and use the vertice points of the original selected polyline.&lt;BR /&gt;&lt;BR /&gt;Its that easy.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2016 19:21:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/select-object-inside-a-polyline/m-p/6020437#M37264</guid>
      <dc:creator>SENL1362</dc:creator>
      <dc:date>2016-02-02T19:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: Select object inside a polyline</title>
      <link>https://forums.autodesk.com/t5/net-forum/select-object-inside-a-polyline/m-p/6020607#M37265</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can try the following Editor.SelectByPolyline() extension method.&lt;/P&gt;
&lt;P&gt;Add the below class to your project.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;using Autodesk.AutoCAD.DatabaseServices;
using Autodesk.AutoCAD.Geometry;

namespace Autodesk.AutoCAD.EditorInput
{
    public enum PolygonSelectionMode { Crossing, Window }

    public static class EditorExtension
    {
        public static PromptSelectionResult SelectByPolyline(this Editor ed, Polyline pline, PolygonSelectionMode mode, params TypedValue[] filter)
        {
            Point3dCollection polygon = new Point3dCollection();
            for (int i = 0; i &amp;lt; pline.NumberOfVertices; i++)
            {
                polygon.Add(pline.GetPoint3dAt(i));
            }
            PromptSelectionResult result;
            ViewTableRecord view = ed.GetCurrentView();
            ed.Zoom(pline.GeometricExtents);
            if (mode == PolygonSelectionMode.Crossing)
                result = ed.SelectCrossingPolygon(polygon, new SelectionFilter(filter));
            else
                result = ed.SelectWindowPolygon(polygon, new SelectionFilter(filter));
            ed.SetCurrentView(view);
            return result;
        }

        public static void Zoom(this Editor ed, Extents3d extents)
        {
            using (ViewTableRecord view = ed.GetCurrentView())
            {
                Matrix3d worldToEye =
                    Matrix3d.Rotation(-view.ViewTwist, view.ViewDirection, view.Target) *
                    Matrix3d.Displacement(view.Target - Point3d.Origin) *
                    Matrix3d.PlaneToWorld(view.ViewDirection)
                    .Inverse();
                extents.TransformBy(worldToEye);
                view.Width = extents.MaxPoint.X - extents.MinPoint.X;
                view.Height = extents.MaxPoint.Y - extents.MinPoint.Y;
                view.CenterPoint = new Point2d(
                    (extents.MaxPoint.X + extents.MinPoint.X) / 2.0,
                    (extents.MaxPoint.Y + extents.MinPoint.Y) / 2.0);
                ed.SetCurrentView(view);
            }
        }
    }
}
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then you can call the Editor.SelectByPolyline() as an Editor instance method.&lt;/P&gt;
&lt;P&gt;It requires as parameters:&lt;/P&gt;
&lt;P&gt;- a polyline instance&lt;/P&gt;
&lt;P&gt;- a PolygonSelectionMode instance (Crossing or Window)&lt;/P&gt;
&lt;P&gt;- optionally, one or more TypedValue instance(s) as selection filter&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's a command example which does what I understand you're trying to do.&lt;/P&gt;
&lt;P&gt;All the magic is here:&lt;/P&gt;
&lt;PRE&gt;PromptSelectionResult selection = 
    ed.SelectByPolyline(pline, PolygonSelectionMode.Window, new TypedValue(0, "CIRCLE,LINE"));&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;using Autodesk.AutoCAD.ApplicationServices;
using Autodesk.AutoCAD.DatabaseServices;
using Autodesk.AutoCAD.EditorInput;
using Autodesk.AutoCAD.Runtime;
using AcAp = Autodesk.AutoCAD.ApplicationServices.Application;

[assembly: CommandClass(typeof(SelectInsidePolygonSample.Commands))]

namespace SelectInsidePolygonSample
{
    public class Commands
    {
        [CommandMethod("CMD1")]
        public void Cmd1()
        {
            Document doc = AcAp.DocumentManager.MdiActiveDocument;
            Database db = doc.Database;
            Editor ed = doc.Editor;

            var options = new PromptEntityOptions("\nSelect polyline: ");
            options.SetRejectMessage("\nMust be a polyline.");
            options.AddAllowedClass(typeof(Polyline), true);
            var result = ed.GetEntity(options);
            if (result.Status != PromptStatus.OK) return;

            using (Transaction tr = db.TransactionManager.StartOpenCloseTransaction())
            {
                Polyline pline = (Polyline)tr.GetObject(result.ObjectId, OpenMode.ForRead);
                PromptSelectionResult selection = &lt;BR /&gt;                    ed.SelectByPolyline(pline, PolygonSelectionMode.Window, new TypedValue(0, "CIRCLE,LINE"));
                if (selection.Status == PromptStatus.OK)
                    ed.SetImpliedSelection(selection.Value);
                tr.Commit();
            }
        }
    }
}
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2016 20:48:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/select-object-inside-a-polyline/m-p/6020607#M37265</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2016-02-02T20:48:14Z</dc:date>
    </item>
    <item>
      <title>Re: Select object inside a polyline</title>
      <link>https://forums.autodesk.com/t5/net-forum/select-object-inside-a-polyline/m-p/6021169#M37266</link>
      <description>&lt;P&gt;Thank you gile.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That works great if the polyline doesn't have an arc segment and Circle,Line do not reside in that arc's area , and that's why I intended to use getpointatdist method to avoid missing objects in arc segment if are there.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I modified my codes that I posted in the first post and revised the filter to be as recommended by SENL like below without any luck&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;PRE&gt;TypedValue[] tv = { new TypedValue(0, "CIRCLE,LINE") };&lt;/PRE&gt;&lt;P&gt;Can you please tell me why my below codes does not work or what cause the program not to work propeply?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;ed.SelectCrossingPolygon(lst, ftr);&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2016 06:27:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/select-object-inside-a-polyline/m-p/6021169#M37266</guid>
      <dc:creator>J-Rocks</dc:creator>
      <dc:date>2016-02-03T06:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: Select object inside a polyline</title>
      <link>https://forums.autodesk.com/t5/net-forum/select-object-inside-a-polyline/m-p/6021186#M37267</link>
      <description>&lt;P&gt;It seems to me you're confusing distances (&lt;EM&gt;gap&lt;/EM&gt;, &lt;EM&gt;dis&lt;/EM&gt;) and number of iterations (&lt;EM&gt;run&lt;/EM&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Double len = pl.Length;
Double dis = len / 250;
Double gap = dis;
int run = ((int)dis);&lt;/PRE&gt;
&lt;P&gt;&lt;EM&gt;run&lt;/EM&gt; should be equal to 250 (plus or minus 1 according to the way you use it).&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2016 06:41:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/select-object-inside-a-polyline/m-p/6021186#M37267</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2016-02-03T06:41:18Z</dc:date>
    </item>
    <item>
      <title>Re: Select object inside a polyline</title>
      <link>https://forums.autodesk.com/t5/net-forum/select-object-inside-a-polyline/m-p/6021205#M37268</link>
      <description>&lt;P&gt;That's it , thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2016 07:16:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/select-object-inside-a-polyline/m-p/6021205#M37268</guid>
      <dc:creator>J-Rocks</dc:creator>
      <dc:date>2016-02-03T07:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Select object inside a polyline</title>
      <link>https://forums.autodesk.com/t5/net-forum/select-object-inside-a-polyline/m-p/6021212#M37269</link>
      <description>A nice article describing the iteration over a polyline(curve), like DIVIDE.&lt;BR /&gt;Use it to generate the selection points over the arc segments.&lt;BR /&gt;&lt;A href="http://through-the-interface.typepad.com/through_the_interface/2009/12/faceting-autocad-curves-using-net.html" target="_blank"&gt;http://through-the-interface.typepad.com/through_the_interface/2009/12/faceting-autocad-curves-using-net.html&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 03 Feb 2016 07:23:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/select-object-inside-a-polyline/m-p/6021212#M37269</guid>
      <dc:creator>SENL1362</dc:creator>
      <dc:date>2016-02-03T07:23:29Z</dc:date>
    </item>
  </channel>
</rss>

