Try a page setup
Registered forum members do not see this ad.
As per header. Is there anything (command, variable) I can change it without opening dialog box.
Need to revise and print new set of dwgs and all of them are setup to none.
Please and thank you.
Try a page setup
“A narrow mind and a fat head invariably come on the same person” Zig Zigler
![]()
I did it( see picture) but I need something faster in command line or macro...
-plot gives you the command line version.
“A narrow mind and a fat head invariably come on the same person” Zig Zigler
![]()
You're interested in the StyleSheet property of each PlotConfiguration Object in your drawing:
Hope this helps!Code:(defun c:GETPLOTSTYLES (/ plotConfigs) ;; © RenderMan 2011 (princ "GET PLOT STYLES") (vl-load-com) (if (setq plotConfigs (vla-get-plotconfigurations (vla-get-activedocument (vlax-get-acad-object)))) (progn (textpage) (vlax-for pc plotConfigs (terpri) (prompt (strcat "\nPlot Configuration: \t" (vla-get-name pc))) (prompt (strcat "\nAssigned Style: \t\t " (vla-get-stylesheet pc)))))) (terpri) (princ))
"Potential has a shelf life." - Margaret Atwood
Set up your first plot, then use previous for the rest, if all drawings are being plotted to same plotter with same settings.
“A narrow mind and a fat head invariably come on the same person” Zig Zigler
![]()
Bookmarks