Xbasic
PDF_APPEND Function
Syntax
Result_Flag as L = PDF_Append(C File1 ,C File2 [,C Result_File ])
Arguments
- Result_Flag
.T. = Append was successful. .F. = Append was not successful.
- File1
The name of the file that will be at the beginning of the new combined file.
- File2
The name of the file that will be at the end of the new combined file.
- Result_File
Optional. Default = "". The name of the file to create. If Result_File is blank, then File_2 is appended to File_1.
Description
The PDF_APPEND() function appends File_2 to File_1, producing Result_File. If Result_File is blank, then File2 is appended to File1.
Example
? pdf_append("c:\inv.pdf", "c:\cus.pdf", "c:\combined.pdf") = .T.
See Also