Fusion.Engine.Graphics.SpriteFont.MeasureGlyph C# (CSharp) Method

MeasureGlyph() public method

public MeasureGlyph ( char ch ) : Rectangle
ch char
return Rectangle
		public Rectangle MeasureGlyph ( char ch )
		{
			var r = GetInfo(ch).dstRect;
			return new Rectangle( (int)r.Left, (int)r.Top, (int)r.Width, (int)r.Height );
		}