-1
Hello, I’m migrating a print code via Vcl spooler to FMX (Firemonkey), but I can’t find the FMX method equivalent to the Vcl method Printer.Canvas.TextOut
. Please tell me what methods are used to print a line of text in the FMX and how to use it.
Printer.Create;
Printer.PrinterIndex:= 1; //Indice da Microsoft Print to PDF no meu sistema
Printer.BeginDoc;
Printer.Canvas.TextOut(5, 5, 'TEXTO DE TESTE DE IMPRESSÃO');
Printer.EndDoc;