These options allow control of some of the advanced features, such as custom paper size and text extraction. 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;Prompt", "0"); item.Set("Advanced Features;Extract Text", "1"); item.Set("Advanced Features;Extract Text Layout", "Physical"); |
|
|
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("Advanced Features;Extract Text", "1") item.Set("Advanced Features;Extract Text Layout", "Physical") ... ' convert the file item.Convert("Microsoft Word", _ "C:\Test\Report.docx", _ "C:\Test\Out\ConvertedReport") |
|
|
||||
|---|---|---|---|---|
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|