Skip to content

Canvas::Arc method

The Arc method draws an arc on the image along the perimeter of the ellipse, bounded by the specified rectangle. It uses the current Pen.

Prototype

void Arc(int x, int y, int x2, int y2, int x3, int y3, int x4, int y4)
void Arc(int x, int y, int x2, int y2, int x3, int y3, int x4, int y4) throws IGRException;
def Arc(self, x: int, y: int, x2: int, y2: int, x3: int, y3: int, x4: int, y4: int) -> void
void Arc(int x, int y, int x2, int y2, int x3, int y3, int x4, int y4)
void Arc(int x, int y, int x2, int y2, int x3, int y3, int x4, int y4)
HRESULT Arc([in] int x, [in] int y, [in] int x2, [in] int y2, [in] int x3, [in] int y3, [in] int x4, [in] int y4)

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.

x3: int : X coordinate of the start point.

y3: int : Y coordinate of the start point.

x4: int : X coordinate of the end point.

y4: int : Y coordinate of the end point.