public Path AddEllipse(
float x,
float y,
float width,
float height
)Public Function AddEllipse (
x As Single,
y As Single,
width As Single,
height As Single
) As Pathpublic:
Path^ AddEllipse(
float x,
float y,
float width,
float height
)member AddEllipse :
x : float32 *
y : float32 *
width : float32 *
height : float32 -> Path The ellipse is added as a new closed figure.
The coordinates of the specified bounding rectangle are not validated here, but in the moment of drawing the coordinates of the possibly transformed path points must fall into the bounds of an int value; otherwise, an OverflowException will be thrown.