예제 #1
0
        public static IVisio.Shape DrawPolyline(this IVisio.Page page, IList <VA.Drawing.Point> points)
        {
            var surface = new VA.Drawing.DrawingSurface(page);
            var shape   = surface.DrawBezier(points);

            return(shape);
        }
예제 #2
0
        public static IVisio.Shape DrawBezier(this IVisio.Page page, IList <VA.Drawing.Point> points, short degree, short flags)
        {
            var surface = new VA.Drawing.DrawingSurface(page);
            var shape   = surface.DrawBezier(points, degree, flags);

            return(shape);
        }
예제 #3
0
 public static IVisio.Shape DrawPolyline(this IVisio.Page page, IList<VA.Drawing.Point> points)
 {
     var surface = new VA.Drawing.DrawingSurface(page);
     var shape = surface.DrawBezier(points);
     return shape;
 }
예제 #4
0
 public static IVisio.Shape DrawBezier(this IVisio.Page page, IList<VA.Drawing.Point> points, short degree, short flags)
 {
     var surface = new VA.Drawing.DrawingSurface(page);
     var shape = surface.DrawBezier(points,degree,flags);
     return shape;
 }