Hallo,
da kannst Du nicht mit Add arbeiten,
so geht es:
Delphi-Quellcode:
with FEdit.RichEdit1 do
begin
SelStart := length(Text);
SelAttributes.Color := clRed;
SelAttributes.Size := 8;
SelAttributes.Style:=[fsBold];
SelText := 'Name: ';
SelAttributes.Color := clblack;
SelAttributes.Size := 8;
SelAttributes.Style:= [];
SelText := 'Test'+#13#10;
end;