public MyText(MyText s, int numeric) : base(s, numeric) { text = s.text; coord = s.coord; myFont = s.myFont; font = myFont.toFont(); }
public MyText(String _text, Point _coord, MyPaintSettings settings, int _name) : base(_name, settings) { text = _text; coord = _coord; myFont = new MyFont(settings.font); font = myFont.toFont(); }
public override void updateInfoAfterLoadFileXML() { base.updateInfoAfterLoadFileXML(); font = myFont.toFont(); }