These options control the behavior of the OutsideIn AX converter used by Document Conversion Service. 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 OutsideIn AX"

         Description ="OutsideIn AX with borders and margins">

  <Settings>

    <add Name ="Oracle.OutsideInAX.BMPPrintBorder" Value="0"/>

    <add Name ="Oracle.OutsideInAX.IntlFlags" Value="1"/>

    <add Name ="Oracle.OutsideInAX.PrintMarginTop" Value="0.50"/>

    <add Name ="Oracle.OutsideInAX.PrintMarginBottom" Value="0.50"/>

  

    <!-- 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("Oracle.OutsideInAX.BMPPrintBorder", "0");

item.Set("Oracle.OutsideInAX.IntlFlags", "1");

item.Set("Oracle.OutsideInAX.PrintMarginTop", "0.50");

item.Set("Oracle.OutsideInAX.PrintMarginBottom", "0.50");

 

item.Set("Devmode settings;Resolution", "300");

item.Set("Save;Output File Format", "TIFF Multipaged");

...

// convert the file

item.Convert("Microsoft Outside-In AX",

             "C:\Test\Report.wpd",

             "C:\Test\Out\ConvertedReport");

 

Code Sample - VB.NET

 

Dim item As PNDocConvQueueServiceLib.IPNDocConvQueueItem

 

 ' Create the conversion item

item = New PNDocConvQueueServiceLib.PNDocConvQueueItem()

 

' Set conversion settings

item.Set("Oracle.OutsideInAX.BMPPrintBorder""0")

item.Set("Oracle.OutsideInAX.IntlFlags""1")

item.Set("Oracle.OutsideInAX.PrintMarginTop""0.50")

item.Set("Oracle.OutsideInAX.PrintMarginBottom""0.50")

 

item.Set("Devmode settings;Resolution""300")

item.Set("Save;Output File Format""TIFF Multipaged")

...

' convert the file

item.Convert("Microsoft Word", _

             "C:\Test\Report.wpd", _

             "C:\Test\Out\ConvertedReport")

 

 

Conversion Settings - OutsideIn AX Printing

Name:

Oracle.OutsideInAX.BMPPrintBorder

 

Print a one pixel wide border around the image.

 

Values:

0 - do not print the border

1 - print the border

 

Name:

Oracle.OutsideInAX.VECPrintBorder

 

Print a one pixel wide border around the image.

 

Values:

0 - do not print the border

1 - print the border

 

Name:

Oracle.OutsideInAX.IntlFlags

 

Specifies what unit of measurement is used for the print margins below. Units are either inches or metric units.

 

Values:

0 - Metric

1 - Imperial (Inches)

Name:

Oracle.OutsideInAX.PrintMarginTop

 

The top print margin height.

 

Values:

A string value representing the printer margin as a floating point number, such as 0.50 for half an inch.

 

Name:

Oracle.OutsideInAX.PrintMarginBottom

 

The bottom print margin height.

 

Values:

A string value representing the printer margin as a floating point number, such as 0.50 for half an inch.

 

Name:

Oracle.OutsideInAX.PrintMarginLeft

 

The left print margin width.

 

Values:

A string value representing the printer margin as a floating point number, such as 0.50 for half an inch.

 

Name:

Oracle.OutsideInAX.PrintMarginRight

 

The right print margin width.

 

Values:

A string value representing the printer margin as a floating point number, such as 0.50 for half an inch.