printPreviewReduce

Type: Boolean

The printPreviewReduce property of the Printer class specifies whether previewed output is reduced to display a full page of print output on the screen. Set this property to false at development time to display the output across the width of the screen (or click the Expand button in the Preview window at run time).

This property can be modified at any time. The default value is true.

The code fragment in the following example shows the use of the printPreviewReduce property.

if expand.value then
    app.printer.printPreviewReduce := false;
endif;

See also "Previewing Print Output", later in this section.