Author Topic: How to use TraceBoundary in AutoCAD2010?  (Read 1573 times)

0 Members and 1 Guest are viewing this topic.

guohq

  • Newt
  • Posts: 84
How to use TraceBoundary in AutoCAD2010?
« on: May 21, 2016, 03:18:26 AM »
I can use Editor.TraceBoundary in AutoCAD2014,but Editor class doesn't has TraceBoundary mehotd in AutoCAD2010.

nobody

  • Swamp Rat
  • Posts: 861
  • .net stuff
Re: How to use TraceBoundary in AutoCAD2010?
« Reply #1 on: May 21, 2016, 08:08:52 AM »
I remember programmatically creating hatches, then getting the boundaries, ultimately disposing the hatch and committing the polylines...that is before I found traceboundary. I believe you can drive bpoly (boundary) command programmatically as well. Lisp below...which could be used in conjunction with your .net routine

(command "_.BPoly" Pt "")

guohq

  • Newt
  • Posts: 84
Re: How to use TraceBoundary in AutoCAD2010?
« Reply #2 on: May 23, 2016, 09:55:23 AM »
thank you!