Click or drag to resize

ElementBuilderArcTo Method (Double, Double, Double, Boolean, Boolean, Double, Double)

Draw an arc from the current point to the end point.

Namespace:  pdftron.PDF
Assembly:  pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax
public void ArcTo(
	double xr,
	double yr,
	double rx,
	bool isLargeArc,
	bool sweep,
	double endX,
	double endY
)

Parameters

xr
Type: SystemDouble
the xr
yr
Type: SystemDouble
the yr
rx
Type: SystemDouble
x-axis rotation in radians
isLargeArc
Type: SystemBoolean
indicates if smaller or larger arc is chosen 1 - one of the two larger arc sweeps is chosen 0 - one of the two smaller arc sweeps is chosen
sweep
Type: SystemBoolean
direction in which arc is drawn (1 - clockwise, 0 - counterclockwise)
endX
Type: SystemDouble
the end x
endY
Type: SystemDouble
the end y
Remarks
The Arc is defined the same way as it is specified by SVG or XPS standards. For further questions please refer to the XPS or SVG standards.
See Also