PEPrintOptions contains printing specifications that are used by the PEGetPrintOptions, to retrieve current options and PESetPrintOptions,to pass new options. These specifications are the same as those that can be set using the Print common dialog box.
typedef struct PEPrintOptions {
WORD StructSize;
unsigned short startPageN;
unsigned short stopPageN;
unsigned short nReportCopies;
unsigned short collation;
char outputFileName [PE_FILE_PATH_LEN];
} PEPrintOptions;
Type PEPrintOptions
StructSize As Integer
StartPageN As Integer
StopPageN As Integer
nReportCopies As Integer
collation As Integer
outputFileName As String * PE_FILE_PATH_LEN
End Type
type
PEOutputFileNameType = array [0..PE_FILE_PATH_LEN-1 ] of Char;
PEPrintOptions = record
StructSize: Word;
StartPageN: Word;
StopPageN: Word;
nReportCopies: Word;
Collation: Word;
outputFileName: PEOutputFileNameType ;
end;
| Seagate Software IMG Holdings, Inc. http://www.seagatesoftware.com Support services: http://support.seagatesoftware.com |