Hello, I want to start the plot command via vla-plot I've changed for example some settings with vla-put-..., but they will not be stored before plotting. How can i store these settings before plotting? Martin (setq acadDoc (vla-get-ActiveDocument (vlax-get-acad-object))) (vlax-invoke-method (vla-get-ActiveLayout acadDoc)'RefreshPlotDeviceInfo) (vl-catch-all-apply '(lambda () (vla-put-CenterPlot (vla-get-ActiveLayout acadDoc) :vlax-false) (vla-put-PaperUnits (vla-get-ActiveLayout acadDoc) acMillimeters) (vla-put-PlotHidden (vla-get-ActiveLayout acadDoc) :vlax-false) (vla-put-PlotWithPlotStyles (vla-get-ActiveLayout acadDoc) :vlax-true) ) ) (vla-PlotToDevice (vla-get-Plot acadDoc)) These settings will not be stored before plotting. How can i store these settings before plotting?