ElementBuilderCreateEllipse Method |
Create an ellipse (or circle, if rx == ry) path Element.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Element CreateEllipse(
double cx,
double cy,
double rx,
double ry
)
Public Function CreateEllipse (
cx As Double,
cy As Double,
rx As Double,
ry As Double
) As Element
public:
virtual Element^ CreateEllipse(
[InAttribute] double cx,
[InAttribute] double cy,
[InAttribute] double rx,
[InAttribute] double ry
) sealed
function CreateEllipse(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
Return Value
Type:
Element the element
See Also