using System; using System.ComponentModel; using System.Collections.Generic; using System.Drawing.Drawing2D; using System.Linq; using System.Text; namespace Svg { [SvgElement("tspan")] public class SvgTextSpan : SvgTextBase { public override SvgElement DeepCopy() { return DeepCopy(); } public override SvgElement DeepCopy() { var newObj = base.DeepCopy() as SvgTextSpan; newObj.X = this.X; newObj.Y = this.Y; newObj.Dx = this.Dx; newObj.Dy = this.Dy; newObj.Text = this.Text; return newObj; } } }