create_ellipse method

create_ellipse

Creates a path geometry representing an ellipse.

Returns

The XPS path geometry.

def create_ellipse(self, center, radius_x, radius_y):
    ...
ParameterTypeDescription
centeraspose.pydrawing.PointFThe center point of the ellipse.
radius_xfloatThe horizontal radius of the ellipse.
radius_yfloatThe vertical radius of the ellipse.

See Also