postScriptLevel

書式

PrintPostScriptOptions.postScriptLevel

説明

PostScriptのレベル(1〜3)を示します。よほど古いプリンタでない限りLevel 3で問題ありません。以下の値になります。

内容
PrinterPostScriptLevelEnum.PSLEVEL1PostScriptレベル1
PrinterPostScriptLevelEnum.PSLEVEL2PostScriptレベル2
PrinterPostScriptLevelEnum.PSLEVEL3PostScriptレベル3
var opt = new PrintPostScriptOptions();
var printOpt = new PrintOptions();
opt.postScriptLevel = PrinterPostScriptLevelEnum.PSLEVEL3;
printOpt.postScriptOptions = opt;
//app.activeDocument.print(printOpt);

目次に戻る