/// <summary> /// /// </summary> /// <param name="other"></param> /// <returns></returns> public virtual bool Equals(Font other) { if (other == null) { return(false); } return(FontData.Equals(other.FontData) && Size.Equals(other.Size)); }
public Font() { FontData = new FontData(); }