Appends a straight line segment and an arc representing a portion
of an ellipse specified by radius and center to the current path.
Namespace:
BitMiracle.Docotic.Pdf
Assembly:
BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)
Syntax
C#
public void AppendArc(
PdfPoint center,
double radiusX,
double radiusY,
double startAngle,
double sweepAngle
)
VB
Public Sub AppendArc (
center As PdfPoint,
radiusX As Double,
radiusY As Double,
startAngle As Double,
sweepAngle As Double
)
Parameters
- center
- Type: BitMiracle.Docotic.Pdf.PdfPoint
The center of the ellipse. - radiusX
- Type: System.Double
The radius of the ellipse measured along the
x-axis. - radiusY
- Type: System.Double
The radius of the ellipse measured along the
y-axis. - startAngle
- Type: System.Double
The start angle of the arc in
degrees. - sweepAngle
- Type: System.Double
The sweep angle of the arc in
degrees.
Remarks
See Also