ContinuousPlotLog 属性 (ActiveX) 
指定是否保存连续的打印日志。 支持的平台:仅限 Windows 属性值只读:不 类型:布尔 
 言论此特性等效于 AutoCAD 选项对话框设置“保存一个连续打印日志”和“每个打印保存一个日志”。 例子VBA: 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
可视化 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-11-4 23:11
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.