Page 1 of 1

Table Font size

Posted: Sun Jul 23, 2023 9:27 am
by ravn
How do I set the font size for the table when loading html page. The html table is only like this:
<table><tr><td>Data 1</td><td>Data 2</td></tr></table>
Font size is always 12 pt but not 10 pt which is my normal font size

Re: Table Font size

Posted: Mon Jul 24, 2023 12:06 pm
by Sergey Tkachenko
Default font size can be changed in RVDefaultLoadProperties.DefaultFontSizeDouble.
The default value is 24 meaning 12pt.

Re: Table Font size

Posted: Fri Dec 08, 2023 10:24 pm
RVDefaultLoadProperties.DefaultFontSizeDouble says cannot be assigned to a read-only property. How to I assign this property?

Re: Table Font size

Posted: Sat Dec 09, 2023 10:42 am
by Sergey Tkachenko
Use
RVDefaultLoadProperties.DefaultFontSizesDouble[rvfstDefault] instead.
I'll make DefaultFontSizeDouble assignable in the next update.