2005. március 19., szombat

How to print the content of a TRichEdit centered on a page


Problem/Question/Abstract:

I have a TDBRichEdit component in D4 and I would like to allow the user to print the selected record centered on a page.

Answer:

It boils down to measuring the text height required for a given width of the printout. This can be done using the EM_FORMATRANGE message, which can also be used to print the formatted text. Here is an example that you can use as a starting point. It measures the text to be able to frame it on the page, you can use the calculated height to vertically center the text by adding to the top border. Printing rich edit contents using EM_FORMATRANGE and EM_DISPLAYBAND:

procedure TForm1.Button2Click(Sender: TObject);
var
  printarea: Trect;
  x, y: Integer;
  richedit_outputarea: TRect;
  printresX, printresY: Integer;
  fmtRange: TFormatRange;
begin
  Printer.beginDoc;
  try
    with Printer.Canvas do
    begin
      printresX := GetDeviceCaps(handle, LOGPIXELSX);
      printresY := GetDeviceCaps(handle, LOGPIXELSY);
      Font.Name := 'Arial';
      Font.Size := 14;
      Font.Style := [fsBold];
      {1 inch left margin / 1.5 inch top
                        margin / 1 inch right margin / 1.5 inch bottom margin}
      printarea := Rect(printresX, printresY * 3 div 2, Printer.PageWidth - printresX,
        Printer.PageHeight - printresY * 3 div 2);
      x := printarea.left;
      y := printarea.top;
      TextOut(x, y, 'A TRichEdit print example');
      y := y + TextHeight('Ag');
      Moveto(x, y);
      Pen.Width := printresY div 72; {1 point}
      Pen.Style := psSolid;
      Pen.Color := clBlack;
      LineTo(printarea.Right, y);
      Inc(y, printresY * 5 div 72);
      {Define a rectangle for the rich edit text.
                        The height is set to the maximum.
                        But we need to convert from device units to twips,
                  1 twip = 1/1440 inch or 1/20 point.}
      richedit_outputarea := Rect((printarea.left + 2) * 1440 div printresX, y * 1440
        div printresY,
        (printarea.right - 4) * 1440 div printresX, (printarea.bottom) * 1440 div
          printresY);
      {Tell rich edit to format its text to the printer.
                                First set up data record for message:}
      fmtRange.hDC := Handle; {printer handle}
      fmtRange.hdcTarget := Handle; {printer handle}
      fmtRange.rc := richedit_outputarea;
      fmtRange.rcPage := Rect(0, 0, Printer.PageWidth * 1440 div printresX,
        Printer.PageHeight * 1440 div printresY);
      fmtRange.chrg.cpMin := 0;
      fmtRange.chrg.cpMax := richedit1.GetTextLen - 1;
      {First measure the text, to find out how high the format rectangle will be.
                        The call sets fmtrange.rc.bottom to the actual height required,
                        if all characters in the selected
      range will fit into a smaller rectangle,}
      richedit1.Perform(EM_FORMATRANGE, 0, Longint(@fmtRange));
      {Draw a rectangle around the format rectangle}
      Pen.Width := printresY div 144; {0.5 points}
      Brush.Style := bsClear;
      Rectangle(printarea.Left, y - 2, printarea.right, fmtrange.rc.bottom * printresY
        div 1440 + 2);
      {Now render the text}
      richedit1.Perform(EM_FORMATRANGE, 1, Longint(@fmtRange));
      {and print it}
      richedit1.Perform(EM_DISPLAYBAND, 0, Longint(@fmtRange.rc));
      y := fmtrange.rc.bottom * printresY div 1440 + printresY * 5 div 72;
      {Free cached information}
      richedit1.Perform(EM_FORMATRANGE, 0, 0);
      TextOut(x, y, 'End of example.');
    end;
  finally
    Printer.EndDoc;
  end;
end;

Nincsenek megjegyzések:

Megjegyzés küldése