|
Piping the print jobs
Print Suite allows to merge any print jobs into one print job using TMultiPrintJob component. No manual coding, all you need is create the list of the print job component using the print job list editor and use TMultiPrintJob component like any other print job component. The list editor can be called by the double-click on the component at design time or by the EditPrintJobs method.
procedure TForm1.EditJobsListClick(Sender: TObject);
begin
MultiPrintJob1.EditPrintJobs;
end;
All the included print job components wil be printed and/or previewed as one print job.
|