示例#1
0
        public void MeasureText(Font font, string text, out int width, out int height)
        {
            Size p = m_Renderer.MeasureText(font, text);

            width  = p.Width;
            height = p.Height;
        }