The Built-in Cadd Converter converts the following types of Computer-Aided Design and Drafting files: DWF, DWFX, PLT and GBX. It does not require any third-party applications.
|
Caution |
This feature is not supported on Microsoft® Windows Server 2008 R2 and Microsoft® Windows 7. |
|
Table values in bold text are the default value for that setting.
|
Code Sample - C# |
item.Set("ConverterPlugIn.PNBuiltinCaddConverterSettings.OpenPassword", "password");
item.Set("Devmode settings;Resolution", "300"); item.Convert("Cadd - Builtin", _ @"C:\Test\BuildingPlan.dwf", _ @"C:\Test\Out\ConvertedDrawings"); |
|
|
Code Sample - VB.NET |
Dim item As PNDocConvQueueServiceLib.IPNDocConvQueueItem
' Create the conversion item item = New PNDocConvQueueServiceLib.PNDocConvQueueItem()
' Set conversion settings item.Set("ConverterPlugIn.PNBuiltinCaddConverterSettings.OpenPassword", "password")
item.Set("Devmode settings;Resolution", "300") item.Set("Save;Output File Format", "TIFF Multipaged") ... ' convert the file item.Convert("Cadd - Builtin", _ "C:\Test\BuildingPlan.dwf", _ "C:\Test\Out\ConvertedDrawings") |
|
|
||||
|---|---|---|---|---|
|