These options control the fax mode and creation of the output file. Table values in bold text are the default value for that setting.
|
Code Sample - C# |
item.Set("Image Options;Fax", "1"); item.Set("Image Options;Fax Profile", "0"); item.Set("Image Options;Fax Resolution", "3"); item.Set("Save;Output File Format", "TIFF Serialized"); |
|
|
Code Sample - VB.NET |
Dim item As PNDocConvQueueServiceLib.IPNDocConvQueueItem
' Create the conversion item item = New PNDocConvQueueServiceLib.PNDocConvQueueItem()
' Set conversion settings item.Set("Devmode settings;Color", "1") item.Set("Image Options;Fax", "1") item.Set("Image Options;Fax Profile", "0") item.Set("Image Options;Fax Resolution", "3") item.Set("Save;Output File Format", "TIFF Serialized") ... ' convert the file item.Convert("Microsoft Word", _ "C:\Test\Report.docx", _ "C:\Test\Out\ConvertedReport") |
|
|
||||
|---|---|---|---|---|
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|