Author Topic: How to create objects in Model and Paper space as well  (Read 1287 times)

0 Members and 1 Guest are viewing this topic.

Coder

  • Swamp Rat
  • Posts: 827
How to create objects in Model and Paper space as well
« on: April 14, 2016, 12:26:24 PM »
Hello guys.

I used to select all circles in Model space and create point objects in their center coordinates and today I needed to do this job on circles in Paper spaces.

How can I create one BlockTableRecord to be able to create Point objects and save them where their related circles reside?

I thought it could be a CommandFlags Enumeration to handle this but I could not come up with anything useful.

Thanks in advance.

Coder

  • Swamp Rat
  • Posts: 827
Re: How to create objects in Model and Paper space as well
« Reply #1 on: April 15, 2016, 07:53:49 AM »
Hello.

Maybe I wasn't clear enough with my first post. :-(

How would you create or add new Points in Model & Paper spaces?
Thanks

Bryco

  • Water Moccasin
  • Posts: 1883
Re: How to create objects in Model and Paper space as well
« Reply #2 on: April 15, 2016, 07:58:43 PM »
If you cycle through the blocktable (not just modelspace) looking for circles, you will find them all. You can use their owner to insert the point into

Coder

  • Swamp Rat
  • Posts: 827
Re: How to create objects in Model and Paper space as well
« Reply #3 on: April 17, 2016, 08:25:12 AM »
If you cycle through the blocktable (not just modelspace) looking for circles, you will find them all. You can use their owner to insert the point into

Thank you Bryco , that makes sense.