Jump to content

Change plot style table from none to monochrome in one hit


mdbdesign

Recommended Posts

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.

ScreenShot041.gif

Link to comment
Share on other sites

You're interested in the StyleSheet property of each PlotConfiguration Object in your drawing:

 

(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))

 

Hope this helps!

Link to comment
Share on other sites

Set up your first plot, then use previous for the rest, if all drawings are being plotted to same plotter with same settings.

Link to comment
Share on other sites

Need to revise and print new set of dwgs and all of them are setup to none.

 

Doh! :ouch:

 

Have you considered simply setting up one plot configuration the way you want, save it to a DWG, and use the Publish command to import it to the set of DWG's needed? :)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...