typedef enum tag_EEPNLAYOUTS
{
EPN_BOOKLET_LAYOUT = 0,
EPN_SINGLE_LAYOUT = 1,
EPN_DOUBLE_LAYOUT = 2,
EPN_X4_LAYOUT = 4,
EPN_X8_LAYOUT = 8,
EPN_X16_LAYOUT = 16
}EEPNLAYOUTS, L_FAR * pEEPNLAYOUTS;
The EEPNLAYOUTS enumeration specifies the layout of pages to be printed on the sheet.
Value |
Meaning |
EPN_BOOKLET_LAYOUT |
Use booklet layout. Two pages will be printed on the same sheet as a book. |
EPN_SINGLE_LAYOUT |
Use single layout. One page will be printed on the sheet. |
EPN_DOUBLE_LAYOUT |
Use double layout. Two pages will be printed on the same sheet. |
EPN_X4_LAYOUT |
Use X4 layout. Four pages will be printed on the same sheet. |
EPN_X8_LAYOUT |
Use X8 layout. Eight pages will be printed on the same sheet. |
EPN_X16_LAYOUT |
Use X16 layout. Sixteen pages will be printed on the same sheet. |
Comments
This enumeration is used within the EPNENHOPTIONS structure.