指定是否保存连续的打印日志。 支持的平台:仅窗口 属性值只读:不 类型:布尔
言论此属性等效于 AutoCAD 选项对话框设置“保存一个连续打印日志”和“每个打印保存一个日志”。 例子工 务 局: Sub Example_ContinuousPlotLog()
' This example changes the AutoCAD Options dialog box
' to specify one log per plot.
Dim MyPreference As AcadPreferencesOutput
Set MyPreference = AcadApplication.preferences.Output
MyPreference.ContinuousPlotLog = False
End Sub
Visual LISP: (vl-load-com)
(defun c:Example_ContinuousPlotLog()
;; This example changes the AutoCAD Options dialog box
;; to specify one log per plot.
(setq acadObj (vlax-get-acad-object))
(setq preferences (vla-get-Preferences acadObj))
(setq MyPreference (vla-get-Output preferences))
(vla-put-ContinuousPlotLog MyPreference :vlax-false)
)
|
|Archiver|CAD开发者社区
( 苏ICP备2022047690号-1 苏公网安备32011402011833)
GMT+8, 2025-10-29 11:32
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.