Using VBA to set plot style
Using VBA to set plot style
(OP)
I'm trying to set the plot style from VBA. I tried ThisDrawing.ActiveLayout.PlotWithPlotStyles = "monochrome.ctb" but it obviously didn't work or I wouldn't be posting.
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
Using VBA to set plot style
|
RE: Using VBA to set plot style
http://mechcad-insider.blogspot.com/
"The fear of the Lord is the beginning of wisdom"
RE: Using VBA to set plot style
ThisDrawing.ActiveLayout.StyleSheet = "monochrome.ctb"
and it did great. Thanks for the needed info, but also thanks for how quickly I got what I needed.