Convert the specified plain text file to PDF and append converted pages to the specified PDF document.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public static void FromText(
PDFDoc in_pdfdoc,
string in_filename,
Obj options
)
Public Shared Sub FromText (
in_pdfdoc As PDFDoc,
in_filename As String,
options As Obj
)
public:
static void FromText(
[InAttribute] PDFDoc^ in_pdfdoc,
[InAttribute] String^ in_filename,
[InAttribute] Obj^ options
)
pdftron.PDF.Convert.FromText = function(in_pdfdoc, in_filename, options);
Parameters
- in_pdfdoc
- Type: pdftron.PDFPDFDoc
the PDFDoc to append to - in_filename
- Type: SystemString
the path to the plain text document to convert - options
- Type: pdftron.SDFObj
the conversion options
Remarks
in_options the conversion options. The availble options are:
| Option Name | Type | Note |
|-------------------------|---------|---------------------------------------------------------|
| BytesPerBite | Integer | In bytes. Use for streaming conversion only. |
| FontFace | String | Set the font face used for the conversion. |
| FontSize | Integer | Set the font size used for the conversion. |
| LineHeightMultiplier | Double | Set the line height multiplier used for the conversion. |
| MarginBottom | Double | In inches. Set the bottom margin of the page. |
| MarginLeft | Double | In inches. Set the left margin of the page. |
| MarginRight | Double | In inches. Set the right margin of the page. |
| MarginTop | Double | In inches. Set the top margin of the page. |
| PageHeight | Double | In inches. Set the page height. |
| PageWidth | Double | In inches. Set the page width. |
| UseSourceCodeFormatting | Boolean | Set whether to use mono font for the conversion. |
See Also