In 2020R2.01 I had code in a Paint event that did
g.fontsize = somevalue
Font has changed in 2020R2.1 - this code fails to compile.
G.font.size = somevalue doesnt work
Given that .size is readonly on the new Font object, how the fudge do I change the size now?
Help for Graphics: (none of this works)
Sub Paint(g As Graphics)
g.Bold = True
g.Italic = True
g.FontName = “Helvetica”
g.FontSize = 18
g.DrawText(“The quick brown fox”, 10, 50)