ElementBuilderArcTo Method (Double, Double, Double, Double, Double, Double) |
Draw an arc with the specified parameters (upper left corner, width, height and angles).
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void ArcTo(
double x,
double y,
double width,
double height,
double start,
double extent
)
Public Sub ArcTo (
x As Double,
y As Double,
width As Double,
height As Double,
start As Double,
extent As Double
)
public:
virtual void ArcTo(
[InAttribute] double x,
[InAttribute] double y,
[InAttribute] double width,
[InAttribute] double height,
[InAttribute] double start,
[InAttribute] double extent
) sealed
function ArcTo(x, y, width, height, start, extent);
Parameters
- x
- Type: SystemDouble
the x
- y
- Type: SystemDouble
the y
- width
- Type: SystemDouble
the width
- height
- Type: SystemDouble
the height
- start
- Type: SystemDouble
starting angle of the arc in degrees
- extent
- Type: SystemDouble
angular extent of the arc in degrees
See Also