SetRedirectPrintingCollate

 

 

#include “BlackIceDEVMODE.h”

 

BOOL SetRedirectPrintingCollate (BlackIceDEVMODE* pDevMode, BOOL bEnable);

Description

Enables or disables collated printing.

Collated printing will print page documents after each other in proper order, while uncollated printing will print the first page copies, then the second page copies, and so on, as on the explanation diagram below.

This setting does not affect the normal output, only the “Redirect printing” feature. The “Use number of copies” feature must be enabled using the SetRedirectPrintingForceNumberOfCopies function.

Parameters

BlackIceDEVMODE* pDevMode               - pointer to the BlackIceDEVMODE structure.

BOOL bEnable                                             - If this value is TRUE Collated printing is enabled, if bEnable is FALSE Collated printing is disabled.

Return value

TRUE on success otherwise FALSE.

Programming Notes

None

Code Example

None