System.Windows.Forms.XplatUIX11.GetFontMetrics C# (CSharp) Method

GetFontMetrics() private method

private GetFontMetrics ( Graphics g, Font font, int &ascent, int &descent ) : bool
g Graphics
font Font
ascent int
descent int
return bool
		internal override bool GetFontMetrics(Graphics g, Font font, out int ascent, out int descent) {
			FontFamily ff = font.FontFamily;
			ascent = ff.GetCellAscent (font.Style);
			descent = ff.GetCellDescent (font.Style);
			return true;
		}
XplatUIX11