tags:

views:

99

answers:

1

I am drawing text on TCanvas using TextOut() but I need a different text color.

What can I do?

+6  A: 

Change the color of the canvas's Font

Canvas.Font.Color := <whatever>;
sdu