Skip to content

Canvas::Pie method

The Pie method draws a pie-shaped section of the ellipse on the canvas, bounded by the rectangle (X, Y) and (X2, Y2).

Prototype

void Pie(int x, int y, int x2, int y2, int x3, int y3, int x4, int y4)
void Pie(int x, int y, int x2, int y2, int x3, int y3, int x4, int y4) throws IGRException;
def Pie(self, x: int, y: int, x2: int, y2: int, x3: int, y3: int, x4: int, y4: int) -> void
void Pie(int x, int y, int x2, int y2, int x3, int y3, int x4, int y4)
void Pie(int x, int y, int x2, int y2, int x3, int y3, int x4, int y4)
HRESULT Pie([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.