Re: FontHTMLSize? Equivalent for a FontSelector control.
profgrid.com

Hello Khurram,
You can either
(a) implement a font selector limited to seven standard font sizes (8, 10, 12, 14, 18, 24, and 36 points) and map that values in points to HTML font size values of 1 thru 7 - like it is done in the demo project, see ComboBoxFontHTMLSize;
or
(b) use the CSS font mechanism to be able to set an arbitrary font size in points, for example:
ProfDHTMLEdit21.ObjectStyle := 'font-size: 9pt';
-Nicholas