DrawPie
IPDFDocument4 :: Page Operations :: Graphics

See Also
Collapse All

This method creates an elliptical pie-shaped path between points.

Syntax

HRESULT DrawPie (
FLOAT left,
FLOAT top,
FLOAT right,
FLOAT bottom,
FLOAT firstX,
FLOAT firstY,
FLOAT secondX,
FLOAT secondY
)
Parameters
left
X coordinate of the top-left corner of the bounding rectangle

top
Y coordinate of the top-left corner of the bounding rectangle

right
X coordinate of the bottom-right corner of the bounding rectangle

bottom
Y coordinate of the bottom-right corner of the bounding rectangle

firstX
X coordinate of the 1st point

firstY
Y coordinate of the 1st point

secondX
X coordinate of the 2nd point

secondY
Y coordinate of the 2nd point

Return value
If successful, this method returns S_OK. If it fails, this method should return one of the error values.

Remarks

This method draws a path as an elliptical pie that is bounded by the rectangle with top-left corner (left, top) and bottom-right corner (right, bottom). The pie is drawn following the perimeter of the ellipse, counterclockwise, from the starting point to the ending point. The starting point is defined by the intersection of the ellipse and a line drawn from the center of the ellipse to the point (firstX, firstY). The ending point is defined by the intersection of the ellipse and a line drawn from the center of the ellipse to the point (secondX, secondY). The current point is center of the wedge.

See theĀ DrawAnglePie method for examples.

See Also

Reference