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
)
Public Sub ArcTo (
xr As Double,
yr As Double,
rx As Double,
isLargeArc As Boolean,
sweep As Boolean,
endX As Double,
endY As Double
)
public:
virtual void ArcTo(
[InAttribute] double xr,
[InAttribute] double yr,
[InAttribute] double rx,
[InAttribute] bool isLargeArc,
[InAttribute] bool sweep,
[InAttribute] double endX,
[InAttribute] double endY
) sealed
function ArcTo(xr, yr, rx, isLargeArc, sweep, endX, 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