FastReport uses standard Graphics.DrawString method to draw a text in the Text object. Probably this font is not compatible with GDI+ mode. Try to set Text object's Clip property to false, or use another font.
I found the reason, some fonts(like chinese fonts) has no space on top, but some fonts has space.
I think when you call Graphics.DrawString in rect, suppose it's RectangleF(0, 0, 200, 200), should be RectangleF(0, 1, 200, 200), rect.Top add 1 Point, thus text can't be clipped.
Windows controls is ok, I think it's processed like this.
Comments
I think when you call Graphics.DrawString in rect, suppose it's RectangleF(0, 0, 200, 200), should be RectangleF(0, 1, 200, 200), rect.Top add 1 Point, thus text can't be clipped.
Windows controls is ok, I think it's processed like this.