/// <override></override> public override Shape Clone() { Shape result = new RectangularLine(Type, this.Template); result.CopyFrom(this); return(result); }
internal static Shape CreateInstance(ShapeType shapeType, Template template) { Shape result = new RectangularLine(shapeType, template); return(result); }