Bug 1659856 - patch 1 - Add IDL constants for duplexing options to nsIPrintSettings. r=jwatt

Differential Revision: https://phabricator.services.mozilla.com/D87958
This commit is contained in:
Jonathan Kew 2020-08-25 20:31:56 +00:00
parent 2c1c2496b3
commit 46079ff5df

View File

@ -95,6 +95,13 @@ interface nsIPrintSettings : nsISupports
const short kOutputFormatPS = 1; const short kOutputFormatPS = 1;
const short kOutputFormatPDF = 2; const short kOutputFormatPDF = 2;
/**
* Simplex/Duplex printing options
*/
const short kSimplex = 0;
const short kDuplexHorizontal = 1;
const short kDuplexVertical = 2;
/** /**
* Set PrintOptions * Set PrintOptions
*/ */