CrossUI.DrawingBackendExtensions.Ellipse C# (CSharp) Method

Ellipse() public static method

public static Ellipse ( this backend, Rectangle rectangle ) : IGeometry
backend this
rectangle Rectangle
return IGeometry
        public static IGeometry Ellipse(this IDrawingBackend backend, Rectangle rectangle)
        {
            return backend.Ellipse(rectangle.X, rectangle.Y, rectangle.Width, rectangle.Height);
        }

Same methods

DrawingBackendExtensions::Ellipse ( this backend, double x, double y, double width, double height ) : IGeometry