Example #1
0
 /// <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));
 }
Example #2
0
 public Font()
 {
     FontData = new FontData();
 }