Lets say I render the character \"A\" to the screen with a size 14 font in Arial Regular. Is there a way in C# to calculate how many pixels wide it is?
The wa
Here's an MSDN piece about determining font metrics. You can use Graphics.MeasureString to do the measurement.