autocad PAGE SETUP
autocad PAGE SETUP
(OP)
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.
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.





RE: autocad PAGE SETUP
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.
RE: autocad PAGE SETUP
sendkeys "pagesetup " ,true
When invoked vba waits until the pagesetup is executed.
Willem from the Netherlands