How to set label text bold in delphi Xe8

  

How can you set a TLabel to Bold and back to normal runtime in Delphi XE8 firemonkey multi device project?

I’ve tried this but it doesn’t work:

label.TextSettings.Font.Style := [TFontStyle.fsBold];

Also tried:

label.Font.Style := [TFontStyle.fsBold];

Comments are closed.