CrossUI.DrawingBackendExtensions.Polygon C# (CSharp) Method

Polygon() public static method

public static Polygon ( this backend ) : IGeometry
backend this
return IGeometry
        public static IGeometry Polygon(this IDrawingBackend backend, params double[] coordinatePairs)
        {
            return backend.Geometry(gt => gt.Polygon(coordinatePairs));
        }