Scalabium Software

 

SMReport Autogenerated

Knowledge for your independence.
 

 
Home Delphi and C++Builder tips


#68:How can I use a resident font for printing? (part 2)

If you want to print a data on printer with max speed, you must print with resident font which installed in your printer.

At first, you must receive the handle of font (using the Windows API's GetStockObject function with DEVICE_DEFAUL_FONT parameter).

After that you must assign this handle to font handle of printer canvas.

procedure TForm1.Button1Click(Sender: TObject);
var
  tm: TTextMetric;
  i: Integer;
begin
  if PrintDialog1.Execute then
  begin
    Printer.BeginDoc;
    Printer.Canvas.Font.Handle := GetStockObject(DEVICE_DEFAULT_FONT);
    GetTextMetrics(Printer.Canvas.Handle, tm);
    for i := 1 to 10 do
      Printer.Canvas.TextOut(100, i*tm.tmHeight + tm.tmExternalLeading, 'Test string');
    Printer.EndDoc;
  end;
end;
See also
 
Viewer for MS Outlook Messages
Metafile Convert
Paradox ActiveX
Database Information Manager
Word Web-stream
Clarion to Text converter
DBISAM Password Recovery
ABA Spreadsheet Convert
Paradox Viewer
ABA Database Convert
 
 
Contact to webmaster

 

Borland Software CodeGear Embarcadero Technologies Scalabium Delphi tips

Copyrightc 1998-2012, Scalabium Software. All rights reserved.
webmaster@scalabium.com

March 9, 2000

SMExport advertising