Important: The information in this document is obsolete and should not be used for new development.
TDftBitsBlk
You pass a record defined by the data typeTDftBitsBlk
to thePrGeneral
procedure when you use thedraftBitsOp
ornoDraftBitsOp
opcode. For information on how to use theTDftBitsBlk
record with thePrGeneral
procedure, see "Enhancing Draft-Quality Printing" on page 9-31.
TYPE TDftBitsBlk = {draft bits record} RECORD iOpCode: Integer; {draftBitsOp or noDraftBitsOp opcode} iError: Integer; {result code returned by PrGeneral} lReserved: LongInt; {reserved} hPrint: THPrint; {handle to the current TPrint record} END;
Field Description
iOpCode
- Either the
draftBitsOp
ornoDraftBitsOp
opcode.iError
- The result code returned by the
PrGeneral
procedure.lReserved
- Reserved.
hPrint
- A handle to a
TPrint
record, which is described on page 9-41. Your application should have already created thisTPrint
record and passed it to thePrintDefault
orPrValidate
routine to make sure that all of the information in theTPrint
record is valid. ThePrintDefault
andPrValidate
routines are described on page 9-56 and page 9-57, respectively.