Tips

Windows 10 標準のドライバーでPDFを作成する

日付2016/06/10
ID77378 (英語原文参照)
バージョンv15
プラットフォームWindows 10

Windows 10 は、標準でPDFプリンターがインストールされいます。そのため、PDF Creator のようなサードパーティ製品に頼らずに、4Dから直接PDFを作成することができます。

標準でインストールされているPDFプリンターの名称は「Microsoft Print to PDF」です。

次の例題は、4DコマンドからPDFを作成する方法になります。


$pdfpath:=System folder(Desktop)+"test.pdf"

$pdfprintername:="Microsoft Print to PDF"
ARRAY TEXT($name1;0)
PRINTERS LIST($name1)

If (Find in array($name1;$pdfprintername)>0)

SET CURRENT PRINTER($pdfprintername)
SET PRINT OPTION(Destination option;2;$pdfpath)

OPEN PRINTING JOB
$h:=Print form("Form_Chouhyou";Form header)
$h:=Print form("Form_Chouhyou";Form detail)
$h:=Print form("Form_Chouhyou";Form footer)
CLOSE PRINTING JOB

SET CURRENT PRINTER("")

End if