FNCEdit Displaylist Font

How can the font size be altered in a FNCEdit display list?

You can access the TListBox instance with

TMSFNCEdit1.LookupListbox.Font.Size := 20;

Sorry Pieter ... did not work as there is no property Font for LookupListbox.

Is there an answer to my issue as I cannot find TMSFNCEdit1.LookupListbox.Font.Size. The property Font does not appear accessible

The Font property exists only in VCL. in FMX the process is more complex, but can be done with style settings using the following code:

procedure TForm1.TMSFNCEdit1LookupNeedData(Sender: TObject; Value: string;
  List: TStrings; var ItemIndex: Integer);
var
  I: Integer;
begin
  for I := 0 to List.Count - 1 do
  begin
    TMSFNCEdit1.LookupListbox.ListItems[I].StyledSettings := TMSFNCEdit1.LookupListbox.ListItems[I].StyledSettings - [TStyledSetting.Size];
    TMSFNCEdit1.LookupListbox.ListItems[I].TextSettings.Font.Size := 20;
  end;
end;