Description
This enumeration wraps the AcPlPlotConfigManager::StdConfigs ObjectARX enum. It is used to identify special device types installed with AutoCAD.
It lists standard PC3 files that are installed by default.
C#
public enum StdConfiguration { NoneDevice, DefaultWindowsSysPrinter, Dwf6ePlot, DwfEplotOptForPlotting, DwfEplotOptForViewing, PublishToWebDwf, PublishToWebJpg, PublishToWebPng, DWFxePlot, PublishToWebDWFx }
Visual Basic
Public Enum StdConfiguration NoneDevice DefaultWindowsSysPrinter Dwf6ePlot DwfEplotOptForPlotting DwfEplotOptForViewing PublishToWebDwf PublishToWebJpg PublishToWebPng DWFxePlot PublishToWebDWFx End Enum
Members
Members | Description |
---|---|
NoneDevice | The "None" device--a default device used when no real devices are available. |
DefaultWindowsSysPrinter | A device representing the Windows printer used by default on the current system. |
Dwf6ePlot | The DWF6 ePlot device. |
DwfEplotOptForPlotting | The DWF ePlot optimized-for-plotting device. |
DwfEplotOptForViewing | The DWF ePlot optimized-for-viewing device. |
PublishToWebDwf | The DWF publish-to-web device. |
PublishToWebJpg | The JPG publish-to-web device. |
PublishToWebPng | The PNG publish-to-web device. |
DWFxePlot | The DWFx ePlot device. |
PublishToWebDWFx | The DWFx publish-to-web device. |