Canvas::Ellipse method¶
The Ellipse method draws the ellipse defined by a bounding rectangle on the canvas, outlined with the current pen and filled with the current brush.
Prototype¶
void Ellipse(int x, int y, int x2, int y2)
void Ellipse(int x, int y, int x2, int y2) throws IGRException;
def Ellipse(self, x: int, y: int, x2: int, y2: int) -> void
void Ellipse(int x, int y, int x2, int y2)
void Ellipse(int x, int y, int x2, int y2)
HRESULT Ellipse([in] int x, [in] int y, [in] int x2, [in] int y2)
Parameters¶
x: int
: Left-most coordinate of the bounding box.
y: int
: Top-most coordinate of the bounding box.
x2: int
: Right-most coordinate of the bounding box.
y2: int
: Bottom-most coordinate of the bounding box.