Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

autocad PAGE SETUP

Status
Not open for further replies.

kcimos

Civil/Environmental
Sep 12, 2003
4
0
0
US
is there away to work with page setups?
i mean, is there a PageSetup object or PageSetups collection?
i don't see anything like that in the object model, but maybe its undocumented or something.
i'm trying to something that should be simple, one of the first things that needs to happen is the listing of the page setups in a drawing.
 
Replies continue below

Recommended for you

You can access the properties from the ModelSpace or PaperSpace objects.

Ex.

ThisDrawing.ModelSpace.Layout.PlotType = acExtents
ThisDrawing.ModelSpace.Layout.StandardScale = acScaleToFit

ThisDrawing.Plot.NumberOfCopies = 1
ThisDrawing.Plot.PlotToDevice


DimensionalSolutions@Core.com
While I welcome e-mail messages, please post all thread activity in these forums for the benefit of all members.
 
I solved this similar problem in my own plot program with this:
sendkeys "pagesetup " ,true

When invoked vba waits until the pagesetup is executed.


Willem from the Netherlands
 
Status
Not open for further replies.
Back
Top