Using rowtextfont in table

Trying to set the font of the table text font to monospace using the code

Table1.RemoveAllRows
Var monofont As New Font(“Casual”, 14)
table1.RowTextFont =monofont

but fails to change anything.
Attached is a project to demonstrate.

Am I understanding this correctly?

Thanks
androidfonttest.zip (4.9 KB)

This little thing makes the difference :wink:

Var monofont As New Font("casual", 14) ' lowercased font name

little things can make a big difference … and it did so thanks

Grant