Need to draw a string around elipse edge in .net
Hello, i have one elipse. in side this elipse i need to draw one string around this elipse edge using C#.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
EmelsiPosted Jul 10, 2006, 1:59 AM
Actually i need to draw one circular Text within an elipse.
Mahesh ChandPosted Jul 9, 2006, 11:33 PM
Graphics.DrawEllipse()
Graphics.DrawString()
Use both methods together by passing same rectangle for both methods. It will draw text within the ellipse.
Alternatively, you may create a GraphicsPath object, add ellipse and string to it and draw path.