AutomaticPlotLog Example

Using Programming Languages other than VBA

Sub Example_AutomaticPlotLog()
		' This example sets the AutoCAD Options dialog box
		' setting Automatically Save Plot and Publish Log to True.

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

End Sub

 

   Comments?