|
What are Print Suite components?
Print Suite Components is a base part of Print Suite. These components allows to print with preview anything that can drawn on TCanvas or on DC. All you need is to draw the requested page in the OnDraw event of TPrintJob component and Print Suite will do the rest. Forget BeginDoc, EndDoc, TPrinter and so on - just draw! If you need to preview your print job, just use TPreview or TPreviewWindow component with your print job component. Print Suite Components are present in the Print Suite tab of the Delphi component palette and contains:
- TPrintJob
- Main component of Print Suite. This component supports printing and linking with the preview component. All you need is set the PageCount property and draw the pages contents in the OnDraw events. The header and footer are supported.
- TPreview
- The print preview component. You don't need any special to use it, just connect the print job component using the PrintJob property and enjoy!
- TPreviewToolbar, TPreviewStatusBar, TPreviewComboBox, TPreviewLabel
- Components for controlling the preview (scale, mode, etc.) and for displaying current settings of TPreview component
- TPreviewWindow
- Full-functional preview window to see the print job contents in the popup window. This component can be linked with print job component like TPreview component.
|