public Text(string text, Font font) : this(text) { this.Font = font; }
public Paragraph(string text, Font font) : this() { throw new System.NotImplementedException(); }
//For serialization public Text() : base() { Font = new Font(); }