Which is the best way to drawString at the center of a rectangleF? Text font size can be reduced to fit it. In most case the Text is too big to fit with a given font so have to reduce the font.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
This code centers the text horizontally and vertically:
|
|||
|
|
|
I played around with it a bit and found this solution (assuming that the
|
|||
|
|
|
It is working for me know. This is what I did
|
|||
|
|
Determine the size of the text to be drawn and then determine the offset for the start of the string from the centre of rectangleF and draw it. |
|||
|
|
|
Get width/2 and height/2 of the rectangle, then using System.Graphics.MeasureString to get the dimensions of your string, again half them and subtract from your earlier width/height values and you end up with the X,Y coordinate to draw your string at in order for it to be centered. |
|||
|
|