PrintTxtMode Property

Build 1501 on 14/Nov/2017  This topic last edited on: 28/Feb/2013, at 19:22

Description

Get/set the text placement for article printing.

This is available in the version 1.6 or newer and should be used only for article/text print.

Syntax

optprint.PrintTxtMode = shortValue

optprint

print options object created by Fred.GetPDFOptions("") or Ted.GetPDFOptions("")

shortValue

printing mode (short)

0 = consecutive print: tiled galleys, until the sheet is full, then proceed on the next sheet

1 = galley print: only one galley on sheet

2 = as in page print: as in page (use the page geometry)

Default value = as in page.

Remarks

It can be set In print options dialog: on "output" tab there is a comboBox.

Example

Dim optPrint As Editorial.PrintOptions = Fred.GetPDFOptions("")

optPrint.PrintTxtMode = 1