Please enable JavaScript to view this site.

Document Conversion Service 3.0

Navigation: Conversion Settings

Built-in Cadd Converter Options

Scroll Prev Top Next More

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.

 

Sample Profile

 

<?xml version="1.0" encoding="utf-8"?>

<Profile Type="0"

        DisplayName="TIFF 300dpi from CAD"

        Description ="Converts Cadd Files with optional password.">

<Settings>

 

  <add Name ="ConverterPlugIn.PNBuiltinCaddConverterSettings.OpenPassword" Value="password"/>

 

  <!-- Output file options -->

  <add Name="Devmode settings;Resolution" Value="300"/>

  <add Name="Save;Output File Format" Value="TIFF Multipaged"/>

   ...

   

</Settings>

</Profile>

 

 

Code Sample - C#

 
PNDocConvQueueServiceLib.PNDocConvQueueItem item = null;
 
// 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");

 

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")

 

 

Conversion Settings -PNBuiltinCaddConverter

Name:

ConverterPlugIn.PNBuiltinCaddConverterSettings.OpenPassword

 

Applies to password protected DWF and DWFX files. Pass in the password to use to open the files.

Values:

String value; the password to use to try an open the file.