AutomaticPlotLog 示例

使用 VBA 以外的其它编程语言

Sub Example_AutomaticPlotLog()
	' 该示例设置 AutoCAD 选项对话框,将“自动保存打印并发布日志”设为 True。

	Dim MyPreference As IAcadPreferencesOutput2
	Set MyPreference = AcadApplication.Preferences.Output
	MyPreference.AutomaticPlotLog = True

End Sub

 
   Comments?