<?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 trim the culve outside the polyline? in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/7706599#M27900</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt; wrote:&lt;BR /&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4476837"&gt;@ActivistInvestor&lt;/a&gt; Very nice !&lt;/P&gt;&lt;P&gt;Thanks to make me discover this API.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Don't forget that as you discovered not long ago, closed, 'heavy', spline-fit polylines will blow up GetSplitCurves() which the Trimmer class uses, so it shouldn't be used on them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 20 Jan 2018 20:01:52 GMT</pubDate>
    <dc:creator>ActivistInvestor</dc:creator>
    <dc:date>2018-01-20T20:01:52Z</dc:date>
    <item>
      <title>How to trim the culve outside the polyline?</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/7705850#M27897</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;I want to imitate the trim command and trim all the curlve outside a closed polyline or a circle.&lt;/P&gt;
&lt;P&gt;I found the exactly lisp function but i want to finish it by c#.net, the following is the lisp code and gif pictrue.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://autocadtips1.com/2012/03/14/trim-and-delete-outside-of-closed-polyline/" target="_blank"&gt;https://autocadtips1.com/2012/03/14/trim-and-delete-outside-of-closed-polyline/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;best wishes&lt;/P&gt;
&lt;P&gt;swaywood&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 09:44:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/7705850#M27897</guid>
      <dc:creator>swaywood</dc:creator>
      <dc:date>2018-01-20T09:44:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to trim the culve outside the polyline?</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/7706078#M27898</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1663708"&gt;@swaywood&lt;/a&gt; wrote:&lt;BR /&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;I want to imitate the trim command and trim all the curlve outside a closed polyline or a circle.&lt;/P&gt;&lt;P&gt;I found the exactly lisp function but i want to finish it by c#.net, the following is the lisp code and gif pictrue.&lt;/P&gt;&lt;P&gt;&lt;A href="https://autocadtips1.com/2012/03/14/trim-and-delete-outside-of-closed-polyline/" target="_blank"&gt;https://autocadtips1.com/2012/03/14/trim-and-delete-outside-of-closed-polyline/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;best wishes&lt;/P&gt;&lt;P&gt;swaywood&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Give this a try:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Autodesk.AutoCAD.ApplicationServices;
using Autodesk.AutoCAD.DatabaseServices;
using Autodesk.AutoCAD.EditorInput;
using Autodesk.AutoCAD.Runtime;

&lt;FONT color="#FF0000"&gt;/// This code requires a reference to AcExportLayoutEx.dll:&lt;/FONT&gt;
using Autodesk.AutoCAD.ExportLayout;


namespace ClipExample
{
   public static class ClipExampleCommands
   {
      static ObjectId GetClipBoundary(Editor ed)
      {
         var peo = new PromptEntityOptions("\nSelect boundary curve: ");
         peo.SetRejectMessage("\nRequires a closed, planar curve");
         peo.AddAllowedClass(typeof(Curve), false);
         peo.AllowObjectOnLockedLayer = true;
         peo.AllowNone = true;
         var per = ed.GetEntity(peo);
         if(per.Status != PromptStatus.OK)
            return ObjectId.Null;
         using(var tr = new OpenCloseTransaction())
         {
            try
            {
               Curve curve = (Curve) tr.GetObject(per.ObjectId, OpenMode.ForRead);
               if(!(curve.Closed &amp;amp;&amp;amp; curve.IsPlanar))
               {
                  ed.WriteMessage("\nInvalid selection, requires a closed, planar curve.");
                  return ObjectId.Null;
               }
               return per.ObjectId;
            }
            finally
            {
               tr.Commit();
            }
         }
      }

      static SelectionSet GetObjectsToClip(Editor ed)
      {
         PromptSelectionOptions pso = new PromptSelectionOptions();
         pso.RejectObjectsFromNonCurrentSpace = true;
         pso.RejectObjectsOnLockedLayers = true;
         var filter = new SelectionFilter(
            new[] { new TypedValue(0, "LINE,ARC,CIRCLE,SPLINE,LWPOLYLINE,ELLIPSE") });
         var psr = ed.GetSelection(pso, filter);
         return psr.Status == PromptStatus.OK ? psr.Value : null;
      }

      [CommandMethod("CLIPOBJECTS")]
      public static void ClipObjectsCommand2()
      {
         Document doc = Application.DocumentManager.MdiActiveDocument;
         Editor ed = doc.Editor;
         Database db = doc.Database;
         ObjectId boundaryId = GetClipBoundary(ed);
         if(boundaryId.IsNull)
            return;
         SelectionSet selection = GetObjectsToClip(ed);
         if(selection == null)
            return;
         try
         {
            using(Transaction tr = doc.TransactionManager.StartTransaction())
            {
               Curve boundary = (Curve) tr.GetObject(boundaryId, OpenMode.ForRead);
               var btr = (BlockTableRecord) tr.GetObject(db.CurrentSpaceId, OpenMode.ForWrite);
               foreach(ObjectId id in selection.GetObjectIds())
               {
                  if(id != boundaryId)
                  {
                     using(Trimmer trimmer = new Autodesk.AutoCAD.ExportLayout.Trimmer())
                     {
                        Entity entityToTrim = (Entity) tr.GetObject(id, OpenMode.ForWrite);
                        trimmer.Trim(entityToTrim, boundary);
                        if(trimmer.HasAccurateResults)
                        {
                           foreach(Entity ent in trimmer.TrimResultObjects)
                           {
                              ent.SetPropertiesFrom(entityToTrim);
                              btr.AppendEntity(ent);
                              tr.AddNewlyCreatedDBObject(ent, true);
                           }
                           if(trimmer.EntityCompletelyOutside || trimmer.EntityOnBoundary)
                              entityToTrim.Erase();
                        }
                     }
                  }
               }
               tr.Commit();
            }
         }
         catch(System.Exception ex)
         {
            ed.WriteMessage("\nOperation failed ({0})", ex.Message);
         }
      }
   }
}&lt;/PRE&gt;</description>
      <pubDate>Sat, 20 Jan 2018 14:21:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/7706078#M27898</guid>
      <dc:creator>ActivistInvestor</dc:creator>
      <dc:date>2018-01-20T14:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to trim the culve outside the polyline?</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/7706505#M27899</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4476837"&gt;@ActivistInvestor&lt;/a&gt; Very nice !&lt;/P&gt;
&lt;P&gt;Thanks to make me discover this API.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 18:45:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/7706505#M27899</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2018-01-20T18:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to trim the culve outside the polyline?</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/7706599#M27900</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt; wrote:&lt;BR /&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4476837"&gt;@ActivistInvestor&lt;/a&gt; Very nice !&lt;/P&gt;&lt;P&gt;Thanks to make me discover this API.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Don't forget that as you discovered not long ago, closed, 'heavy', spline-fit polylines will blow up GetSplitCurves() which the Trimmer class uses, so it shouldn't be used on them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 20:01:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/7706599#M27900</guid>
      <dc:creator>ActivistInvestor</dc:creator>
      <dc:date>2018-01-20T20:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to trim the culve outside the polyline?</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/7706607#M27901</link>
      <description>&lt;P&gt;Thank you for reminding this too.&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 20:06:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/7706607#M27901</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2018-01-20T20:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to trim the culve outside the polyline?</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/7708379#M27902</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4476837"&gt;@ActivistInvestor&lt;/a&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks for your help.&lt;/P&gt;
&lt;P&gt;It would be better if the trimer supports hatch entity.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Work-229.png" style="width: 359px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/452849i57D358C821E5A61A/image-size/large?v=v2&amp;amp;px=999" role="button" title="Work-229.png" alt="Work-229.png" /&gt;&lt;/span&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jan 2018 08:26:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/7708379#M27902</guid>
      <dc:creator>swaywood</dc:creator>
      <dc:date>2018-01-22T08:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to trim the culve outside the polyline?</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/7709379#M27903</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1663708"&gt;@swaywood&lt;/a&gt; wrote:&lt;BR /&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4476837"&gt;@ActivistInvestor&lt;/a&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for your help.&lt;/P&gt;&lt;P&gt;It would be better if the trimer supports hatch entity.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The trimmer doesn't support blocks or hatching. That's supported by&amp;nbsp;EXPORTLAYOUT but it happens at a higher-level in the code, which is more complicated to use because not all of the classes involved are public.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can write code that explodes the hatching (and block insertions if you need that), and the trimmer will clip the exploded objects. The objects that are to be clipped do not have to be in a database.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jan 2018 14:36:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/7709379#M27903</guid>
      <dc:creator>ActivistInvestor</dc:creator>
      <dc:date>2018-01-22T14:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to trim the culve outside the polyline?</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/9194811#M27904</link>
      <description>&lt;P&gt;I have the same problem ,thanks&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2019 01:28:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/9194811#M27904</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-11T01:28:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to trim the culve outside the polyline?</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/9194813#M27905</link>
      <description>&lt;P&gt;you are a nice man ,thanks&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2019 01:30:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/9194813#M27905</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-11T01:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to trim the culve outside the polyline?</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/9197419#M27906</link>
      <description>&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;hi, Great!&amp;nbsp; I want to ask more, I have read this post: &lt;A href="https://autocadtips1.com/2012/03/08/autolisp-trim-objects-on-one-side/" target="_blank" rel="noopener"&gt;https://autocadtips1.com/2012/03/08/autolisp-trim-objects-on-one-side/&lt;/A&gt;&lt;BR /&gt;and I tried using the following code but why it didn't work? if typeof TrimEnt is Line then it'll work but it isn't working with Pline,Spline&lt;/P&gt;&lt;PRE&gt;Dim pick As ResultBuffer = New ResultBuffer()
                        pick.Add(New TypedValue(CShort(LispDataType.ListBegin)))
                        pick.Add(New TypedValue(CShort(LispDataType.ObjectId), TrimEntID))
                        pick.Add(New TypedValue(CShort(LispDataType.Point3d), Pickpt))
                        pick.Add(New TypedValue(CShort(LispDataType.ListEnd)))
   ed.Command("trim", boundset, "", pick, "")&lt;/PRE&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2019 23:53:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/9197419#M27906</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-11T23:53:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to trim the culve outside the polyline?</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/9691119#M27907</link>
      <description>&lt;P&gt;&lt;FONT color="#800000"&gt;what code must to edit if trim only in inside rectangle&lt;/FONT&gt;&lt;BR /&gt;i was try change this&amp;nbsp;&lt;FONT&gt;if (!trimmer.EntityOnBoundary) but not sucsess&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Aug 2020 08:08:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/9691119#M27907</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-14T08:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to trim the culve outside the polyline?</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/10468705#M27908</link>
      <description>&lt;P&gt;Hi! I'm trying to use the trimmer function in AutoCAD 2021, however I can't find any reference to "Autodesk.AutoCAD.ExportLayout" or&amp;nbsp;AcExportLayoutEx.dll in the documentation. Do you know where I can find info on using these functionalities? Thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;Tyler&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jul 2021 16:08:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/10468705#M27908</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-07-14T16:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to trim the culve outside the polyline?</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/10468784#M27909</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;You should find it in the AutoCAD installation folder (default: C:\Program Files\Autodesk\AutoCAD 20XX).&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jul 2021 16:44:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/10468784#M27909</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2021-07-14T16:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to trim the culve outside the polyline?</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/11304059#M27910</link>
      <description>&lt;P&gt;I had the same requirement, but with a hatch as output. but this helps&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2022 13:50:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/11304059#M27910</guid>
      <dc:creator>kiruba</dc:creator>
      <dc:date>2022-07-18T13:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to trim the culve outside the polyline?</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/11304067#M27911</link>
      <description>&lt;P&gt;&lt;SPAN&gt;This is amazing. i was searching this for implementing custom shape hatch. Although the result is not a hatch, i can live with it. thanks again&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2022 13:49:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/11304067#M27911</guid>
      <dc:creator>kiruba</dc:creator>
      <dc:date>2022-07-18T13:49:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to trim the culve outside the polyline?</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/11353944#M27912</link>
      <description>&lt;P&gt;This works perfectly. however, i need to clip with nested boundaries. For this i need to clip the entities inside trim boundary. i am unable to achieve this. is there a solution?&lt;/P&gt;</description>
      <pubDate>Thu, 11 Aug 2022 14:49:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/11353944#M27912</guid>
      <dc:creator>kiruba</dc:creator>
      <dc:date>2022-08-11T14:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to trim the culve outside the polyline?</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/11382001#M27913</link>
      <description>&lt;P&gt;Well, you could certainly modify the code I posted to perform the inverse operation (remove objects or portions thereof that are within the trim boundary rather than outside of it) and use that modified code with the nested boundary. The original code was never designed to trim against a region with inner loops.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2022 22:53:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-trim-the-culve-outside-the-polyline/m-p/11382001#M27913</guid>
      <dc:creator>Activist_Investor</dc:creator>
      <dc:date>2022-08-25T22:53:03Z</dc:date>
    </item>
  </channel>
</rss>

