In Inno Setup I have a TNewRadioButton.
FullRadioButton: TNewRadioButton;
And it has the following Caption:
FullRadioButton.Caption := 'New Customer';
But the color of the text is black by default.
I am trying to change its color the following way but it doesn't work:
FullRadioButton.Font.Color := $FF0000;// doesn't work
FullRadioButton.Color := $FF0000// doesn't work
Can someone please tell me what i'm doing wrong?
Here is my full source code if needed: https://jsfiddle.net/uj3sxvkq/