Notes Export

Top  Previous  Next

 

n2pdf exports the Notes documents to the RTF file format and then takes this RT content to put together the PDF file. This option requires some adaptation of the content. The following options allow you to influence how the conversion takes place.

 

 

N2PDFOPTION_EXPORT_HIDE_ATTACHMENT

This parameter defines if the symbols for Notes file attachments are visible or not. Notes saves a small graphic in a document for every file attachment. n2pdf is capable of exporting this graphic. As n2pdf provides different ways of handling file attachments, this graphic may be unwanted. This parameter turns off the export of these graphics.

 

N2PDFVALUE_TRUE

A graphic for the attachment is not exported.

N2PDFVALUE_FALSE

The graphic for the attachment is exported.

 

Call N2PDFSetOption ( JobID,_

N2PDFOPTION_EXPORT_HIDE_ATTACHMENT, N2PDFVALUE_True, "" )

 

 

N2PDFOPTION_EXPORT_TABLE_GAP

This parameter allows you to define the space between a cell border and the text contained in a cell. By default n2pdf, as opposed to Notes, uses a spacing of 0,049cm (28 twips). This space makes texts in cells more legible. This spacing may lead to differences in text breaks between the n2pdf and the Notes document. If this spacing is unwanted, you can change the spacing using this parameter. The input is made in "Twips" (56,7 Twips = 1 mm).

 

Call N2PDFSetOption ( JobID,_

N2PDFOPTION_EXPORT_TABLE_GAP, "5", "" )

 

 

N2PDFOPTION_EXPORT_HIDE_FORM_PARAGRPAH

You can use this parameter to prevent the leading paragraph (\par) from being exported at the same time as you export the entire set of Notes screens. If this paragraph exists, this can cause incorrect line spacing or spacing relative to text content. For compatibility reasons, this option can be used to re-enable the previous characteristics, i.e. the "additional" paragraph is exported. To do this, set the parameter to "N2PDFVALUE_FALSE".

 

N2PDFVALUE_TRUE

The leading paragraph (\par) is not exported.

N2PDFVALUE_FALSE

The leading paragraph (\par) is exported.

 

Call N2PDFSetOption ( JobID,_

N2PDFOPTION_EXPORT_HIDE_FORM_PARAGRAPH, N2PDFVALUE_TRUE, "" )