Hallo;
oder so:
Delphi-Quellcode:
RichEdit1.SelStart := MAXINT;
RichEdit1.Paragraph.Alignment := taCenter;
RichEdit1.Lines.Add('Center');
SelStart muss nicht jedesmal gesetzt werden, wenn mehrere Zeilen hinzugefügt werden:
Delphi-Quellcode:
RichEdit1.SelStart := MAXINT;
RichEdit1.Paragraph.Alignment := taCenter;
RichEdit1.Lines.Add('Center');
RichEdit1.Paragraph.Alignment := taRightJustify;
RichEdit1.Lines.Add('Right');