ElementBuilderEllipse Method |
Add an ellipse (or circle, if rx == ry) to the current path as a complete subpath.
Setting the current point is not required before using this function.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void Ellipse(
double cx,
double cy,
double rx,
double ry
)
Public Sub Ellipse (
cx As Double,
cy As Double,
rx As Double,
ry As Double
)
public:
virtual void Ellipse(
[InAttribute] double cx,
[InAttribute] double cy,
[InAttribute] double rx,
[InAttribute] double ry
) sealed
function Ellipse(cx, cy, rx, ry);
Parameters
- cx
- Type: SystemDouble
the cx
- cy
- Type: SystemDouble
the cy
- rx
- Type: SystemDouble
the rx
- ry
- Type: SystemDouble
the ry
See Also