Accessing A Custom Plot Configuration Property Through Code

Accessing A Custom Plot Configuration Property Through Code

Anonymous
Not applicable
784 Views
1 Reply
Message 1 of 2

Accessing A Custom Plot Configuration Property Through Code

Anonymous
Not applicable

Hello, I'll keep this simple. Does anyone know how to access and get/set the "Open in PDF viewer when done" checkbox on the "DWG To PDF Properties" dialog, via code?

 

AutoCadProperties.png

 

0 Likes
785 Views
1 Reply
Reply (1)
Message 2 of 2

Anonymous
Not applicable

The option “Open in PDF viewer when done” is stored on the AutoCAD plotter configuration file (PC3). When you check or uncheck this checkbox, and hit OK, it will save the info back to the file DWG To PDF.pc3.

I don’t see the .NET API that can modify a PC3 file. We may try to look to import from ObjectARX SDK. The class PlotSettings and PlotConfig also do not have the “open file” option. We can use the PC3 file with method PlotSettingsValidator.SetPlotConfigurationName(plotSettings, plotConfigurationName, canonicalMediaName).

The plotConfigurationName is the name of PC3 file to use (plotConfigurationName = “DWG To PDF.pc3”). You can create another PC3 file copied from the original DWG To PDF.pc3 file with the saved unchecked “Open in PDF viewer when done” option.

Kean’s code presents how to plot a window using a PC3 file.

-Khoa

0 Likes