exemplo rápido

Delphi

27/04/2005

pessoal, to precisando meio rápido, se puderem me ajudar, de um exemplo onde mude a cor de fonte, negrito e coisas desse tipo de um DBRicheEdit.

valeu gente!


Rfpsatin

Rfpsatin

Curtidas 0

Respostas

Motta

Motta

27/04/2005

do help

This example requires a TRichEdit and a TButton. Leave the default text, usually ´RichEdit1´, in the lines property. The DefAttributes will apply to this text.

procedure TForm1.Button1Click(Sender: TObject);

begin
with RichEdit1.SelAttributes do
begin
Color := clRed;
Height := Height + 5;
end;
RichEdit1.Lines.Add(´This line of text will be red.´);
end;

procedure TForm1.Button2Click(Sender: TObject);
begin
RichEdit1.DefAttributes.Color := clBlue;
RichEdit1.DefAttributes.Style := [fsBold, fsItalic];
end;


GOSTEI 0
POSTAR