Hi,
I am using GOEllipse to draw ellipse in my application. I want to rotate the ellipse by 45 degrees.
Please can you suggest how can i rotate the ellipse.
Hi,
I am using GOEllipse to draw ellipse in my application. I want to rotate the ellipse by 45 degrees.
Please can you suggest how can i rotate the ellipse.
Use a GoDrawing…
GoDrawing e = new GoDrawing(GoFigure.Ellipse)
e.Size = new SizeF(40,20) <span =“apple-tab-span”="" style=“white-space:pre”> // Or whatever
PointF rotatePoint = e.Center;
float angle = 45;
e.Rotate(rotatePoint, angle);