This function allows you to set Edit window print options.
Visual Basic |
---|
Public Sub SetPrintOptions( _ ByVal Location As PCDPRINTLOC, _ ByVal Draft As ENUM_PCD_ON_OFF, _ ByVal Filemode As PCDPRINTFILEMODE, _ ByVal ExtNum As Long _ ) |
- Location
Destination of printed data. Options include Off, File, or PrinterValue Description PCD___OFF No destination for printed data. PCD_FILE Destination for the printed data is a file. PCD_PRINTER Destination for the printed data is printer. - Draft
When destination is printer, specifies if printer should print in draft mode or not. Options include On and Off.Value Description DMIS_OFF Does not print in draft form. DMIS_ON Prints in draft form. - Filemode
When destination is file, specifies file naming and writing parameters. Options include: Append, New File, Overwrite, and Auto. Auto mode automatically increments a numeric extension for the output file.Value Description PCD_APPEND Appends information to the end of the file. PCD_AUTO Automatically increments a numeric extension for the output file name. PCD_NEWFILE Sends information to a new file. PCD_OVERWRITE Overwrites information in the current file. PCD_PROMPT Prompts the user for a filename. - ExtNum
Number to be used for the file extension of the output file.