Skip to content

Canvas::RoundRect method

RoundRect draws a rectangle with rounded corners on the canvas, outlined with the current pen and filled with the current brush.

Prototype

void RoundRect(int x, int y, int x2, int y2, int radius)
void RoundRect(int x, int y, int x2, int y2, int radius) throws IGRException;
def RoundRect(self, x: int, y: int, x2: int, y2: int, radius: int) -> void
void RoundRect(int x, int y, int x2, int y2, int radius)
void RoundRect(int x, int y, int x2, int y2, int radius)
HRESULT RoundRect([in] int x, [in] int y, [in] int x2, [in] int y2, [in] int radius)

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.

radius: int : The radius to use for the rounded corner.