The JadePrintData class is the abstract superclass of report output data classes that enables you to store print data or send it directly to a display device for previewing. Each page of print output is contained in a Windows metafile (in the enhanced metafile .emf format) by default, which contains details of all Application Programming Interfaces (APIs) calls necessary to reproduce print output in a form independent of the printer device so that it can be output directly to a display device. You can use this metafile, for example, to send electronic mail output with a message or insert it into Microsoft Word for Windows. (Note that the metafile is inserted into Word for Windows; the file is not opened from within Word.) A metafile stretches or shrinks to the orientation and size of the page with which you are dealing. For example, a page that was painted with portrait orientation and is subsequently changed to landscape orientation may be stretched in width but compacted in height to fit the new orientation.
JADE print data can be one of the following formats.
Scalable Vector Graphics (SVG), which is the default value on all operating systems
Windows Enhanced Meta Files (EMF)
The choice of meta file format (EMF or SVG) and print data type (GDI or PS) are controlled by the
By default, when a print preview is requested, a JadeReport object is created that contains an array of transient JadePrintDirect and JadePrintPage object entries. This JadeReport object is invisible and transparent to you.
Use the
If you are running JADE in thin client mode, the page of print output is constructed and previewed on the presentation client, but the binary image containing the page is sent to the application server for storage.
When the presentation client requests a print preview, the pages of the printed report do not have to be transferred to and from the application server. (This optimizes the performance of the print preview process when running JADE thin client mode over a slow network.) However, if your application calls
When you use the
JadePrintDirect, JadePrintPage