How to change FNCDateTimePicker display font size.

Tried setting different values but does not seems to work.

Hi,

TTMSFNCDateTimePicker uses TTMSFNCDatePicker and TTMSFNCDigitalTimePicker/TTMSFNCAnalogTimePicker. You have access to these controls through the DatePicker, DigitalTimePicker and AnalogTimePicker properties. You can set the font size programmatically by doing the following:

TMSFNCDateTimePicker1.DatePicker.Font.Size := 20;
//Enable depending on the time picker type you are using:
//TMSFNCDateTimePicker1.DigitalTimePicker.Font.Size := 20;
//TMSFNCDateTimePicker1.AnalogTimePicker.Font.Size := 20;

Or like this if Editable is True:

TMSFNCDateTimePicker1.DatePicker.Edit.Font.Size := 20;
//Enable depending on the time picker type you are using:
//TMSFNCDateTimePicker1.DigitalTimePicker.Edit.Font.Size := 20;
//TMSFNCDateTimePicker1.AnalogTimePicker.Edit.Font.Size := 20;
1 Like