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
For windows forms you use Graphics.MeasureString, For WPF you use FormattedText.Width and FormattedText.Height.