IGraphicsPathAddEllipse Method |
Adds an ellipse to the path
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax void AddEllipse(
float x,
float y,
float width,
float height
)
Sub AddEllipse (
x As Single,
y As Single,
width As Single,
height As Single
)
abstract AddEllipse :
x : float32 *
y : float32 *
width : float32 *
height : float32 -> unit
Parameters
- x
- Type: SystemSingle
X co-ordinate of the top left of the ellipse - y
- Type: SystemSingle
Y co-ordinate of the top left of the ellipse's bounding rectangle - width
- Type: SystemSingle
Width of the rectangle - height
- Type: SystemSingle
Height of the rectangle
Remarks
Rectangles are separate figures and will not connect to the current or next figure in the path.
The starting point of the path will no longer be set after this call.
See Also