These options control the orientation, resolution, color mode and paper size of the output file. You can also choose to split multipage files based on the number of pages per file or a file size threshold. Table values in bold text are the default value for that setting.
|
Code Sample - C# |
item.Set("Devmode settings;Resolution", "300"); item.Set("Save;Output File Format", "TIFF Serialized"); item.Set("Save;Color reduction", "BW"); item.Set("Save; |
|
|
Code Sample - VB.NET |
Dim item As PNDocConvQueueServiceLib.IPNDocConvQueueItem
' Create the conversion item item = New PNDocConvQueueServiceLib.PNDocConvQueueItem()
' Set conversion settings item.Set("Devmode settings;Resolution", "300") item.Set("Save;Output File Format", "TIFF Serialized") item.Set("Save;Prompt", "0") item.Set("Save;Overwrite", "1") item.Set("Save;Color reduction", "BW") ... ' convert the file item.Convert("Microsoft Word", _ "C:\Test\Report.docx", _ "C:\Test\Out\ConvertedReport") |
|
|
||||
|---|---|---|---|---|
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|