public static IVisio.Shape DrawPolyline(this IVisio.Page page, IList <Geometry.Point> points) { var surface = new SurfaceTarget(page); var shape = surface.DrawBezier(points); return(shape); }
public static IVisio.Shape DrawBezier(this IVisio.Page page, IList <Geometry.Point> points, short degree, short flags) { var surface = new SurfaceTarget(page); var shape = surface.DrawBezier(points, degree, flags); return(shape); }