Exemplo n.º 1
0
 /// <override></override>
 public override Shape Clone()
 {
     Shape result = new Polyline(Type, (Template)null);
     result.CopyFrom(this);
     return result;
 }
Exemplo n.º 2
0
 internal static Shape CreateInstance(ShapeType shapeType, Template template)
 {
     Shape result = new Polyline(shapeType, template);
     return result;
 }
Exemplo n.º 3
0
        internal static Shape CreateInstance(ShapeType shapeType, Template template)
        {
            Shape result = new Polyline(shapeType, template);

            return(result);
        }