コード例 #1
0
ファイル: LinearShapes.cs プロジェクト: LudovicT/NShape
 /// <override></override>
 public override Shape Clone()
 {
     Shape result = new Polyline(Type, (Template)null);
     result.CopyFrom(this);
     return result;
 }
コード例 #2
0
ファイル: LinearShapes.cs プロジェクト: LudovicT/NShape
 internal static Shape CreateInstance(ShapeType shapeType, Template template)
 {
     Shape result = new Polyline(shapeType, template);
     return result;
 }
コード例 #3
0
        internal static Shape CreateInstance(ShapeType shapeType, Template template)
        {
            Shape result = new Polyline(shapeType, template);

            return(result);
        }