How to change the page setup name for plotting

How to change the page setup name for plotting

Anonymous
Not applicable
444 Views
1 Reply
Message 1 of 2

How to change the page setup name for plotting

Anonymous
Not applicable
Which ObjectArx class and method I have to use for changing the page setup name in plot setup dialog ?
0 Likes
445 Views
1 Reply
Reply (1)
Message 2 of 2

Anonymous
Not applicable
Sub test()
   
ThisDrawing.Layouts(1).Name = "tintin"
End Sub

Note thisdrawing is a AcadDocuments type of
variable.

 

 

This code will replace your first layout's name to
"tintin", layout 0 beeing your model space..

 

 

Hope this helps.


style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
Which
ObjectArx class and method I have to use for changing the page setup name in
plot setup dialog ?
0 Likes