In C# I would like to programmatically change the font metrics of a font that I load.
Font myFont = new Font("arial", 14, FontStyle.Regular)
For a font family I can request the font metrics, like line spacing, but I can't change them. And for a specific font there is no way (so far as I can tell) to request the font metrics.
I'm especially interested in trying to increase the line spacing, without having to revert to using graphics.DrawString() and a lot of font measuring.
So far I only found this MSDN page: http://msdn.microsoft.com/en-us/library/xwf9s90b.aspx