TCellProperties.FontSize maps to TFont.Height

TCellProperties.FontSize used to map to the TFont.Size property of the Font in the respective cell.


This was changed at some point: it now maps to TFont.Height


Is that an oversight?


A property named FontSize should correspond to Font.Size.
Changing the values for CellProperties.FontSize project-wide would impose a significant workload.
Will this be fixed or is it already fixed (our TMS version is a couple of months old)?

Thanks!

This was a deliberate change related to improvements in handling high-DPI.
TCellProperties.FontSize should not be directly used.
The interface to use is grid.FontSizes[col,row]: integer;

Thanks for the heads-up. We will use Grid.FontSizes then.