FMX.Printer.TPrinter
Delphi
TPrinter = class(TAbstractPrinter)
C++
class PASCALIMPLEMENTATION TPrinter : public Fmx::Graphics::TAbstractPrinter
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
class | public | FMX.Printer.pas FMX.Printer.hpp |
FMX.Printer | FMX.Printer |
Description
Encapsulates the Windows and OS X standard printer interfaces.
Use TPrinter to manage any printing performed by an application. Obtain an instance of TPrinter by calling the global Printer function.
A print job is started by a call to BeginDoc. The application sends commands by rendering through a Text variable or the printer's canvas. You can move to a new page by calling the NewPage method. The job stays open until the application calls EndDoc. If a problem occurs and you need to terminate a print job that was not sent to the printer successfully, call the Abort method.
Use the TPrinter properties to configure the print job. For example, the title displayed in the Print Manager (and on network header pages) is determined by the Title property. Copies determines the number of copies to print, and Orientation lets you specify whether to print in portrait or landscape mode.
TPrinter includes several read-only properties that let you determine which page is currently being printed, the fonts available on the printer, the paper size, and so on.
When creating a TPrinter descendant, you must call the SetPrinter routine in order for the TPrinter descendant object to work correctly.