Whether to fill the arc rather than simply drawing it.
return
The Object ID of the newly added Graphic Object.
Notes
Adds an arc to the current page. The arc is drawn in the current
color at the current
width and with the current
options.
The arc is fixed at the center coordinate and can have different
horizontal and vertical radii. Drawing starts at the start angle
and the arc is swept out until the end angle is reached. Angles are
measured anti-clockwise with zero at three o'clock.
The AddArc function returns the Object ID of the newly added
Graphic Object.
Example
The following code adds an arc to a document.
using var doc = new Doc();
doc.Width = 24;
doc.Color.String = "120 0 0";
doc.AddArc(0, 270, 300, 400, 200, 300);
doc.Save("docaddarc.pdf");