DRAWING A POLYLINE IN PAPERSPACE

DRAWING A POLYLINE IN PAPERSPACE

Anonymous
Not applicable
176 Views
3 Replies
Message 1 of 4

DRAWING A POLYLINE IN PAPERSPACE

Anonymous
Not applicable
I have a polyline object that was selected by clicking in model space on the
object. I now need to take this and draw it in paperspace. Any ideas on
how I can "copy and paste" this or any alternative method?
0 Likes
177 Views
3 Replies
Replies (3)
Message 2 of 4

Anonymous
Not applicable
Check out the CopyObjects method.

--
Attitudes are contagious. Is yours worth catching?
http://www.acadx.com

"Randy" wrote in message
news:BFD754DD93454C9E087C595FDEC33340@in.WebX.SaUCah8kaAW...
> I have a polyline object that was selected by clicking in model space on
the
> object. I now need to take this and draw it in paperspace. Any ideas on
> how I can "copy and paste" this or any alternative method?
>
0 Likes
Message 3 of 4

Anonymous
Not applicable
I've already successfully used the copy method , however it only copies
right back into model space. I need this to appear in a specific location
in paperspace, but I can't seem to get that to work.
0 Likes
Message 4 of 4

Anonymous
Not applicable
Using the CopyObjects method (not the Copy method), you can specify the
Block of a paper space layout as the owner of the copied object(s):

Public Sub Test()

Dim ent As AcadEntity
Dim ents(0) As AcadEntity
Dim blk As AcadBlock

Set blk = ThisDrawing.Layouts("Layout1").Block

ThisDrawing.Utility.GetEntity ent, pt, "Select object: "
Set ents(0) = ent

ThisDrawing.CopyObjects ents, blk

End Sub

--
Attitudes are contagious. Is yours worth catching?
http://www.acadx.com

"Randy" wrote in message
news:756490227E262D080CBA2CF7C07A94DF@in.WebX.SaUCah8kaAW...
> I've already successfully used the copy method , however it only copies
> right back into model space. I need this to appear in a specific location
> in paperspace, but I can't seem to get that to work.
>
0 Likes