Reputation: 2838
I am drawing text on TCanvas using TextOut() but I need a different text color.
TextOut()
What can I do?
Upvotes: 5
Views: 8254
Reputation: 63
Also You can change canvas style
Canvas.Brush.Style := bsClear;
Upvotes: 1
Change the color of the canvas's Font
Canvas.Font.Color := <whatever>;
Upvotes: 13