printerType

書式

printerInfoObject.printerType

説明

プリンタの種類(PostScriptプリンタか非PostScriptプリンタか。もしくは不明)を示します。以下の表に示す値になります。

内容
PrinterTypeEnum.NONPOSTSCRIPTPRINTER非PostScriptプリンタ
PrinterTypeEnum.POSTSCRIPTPRINTERPostScriptプリンタ
PrinterTypeEnum.Unknown不明
var info=app.printerList[1].printerInfo;
alert(info.printerType);

目次に戻る