Exemple #1
0
 /// <summary>
 /// Copy constructor
 /// </summary>
 /// <param name="other"></param>
 public TextGDI(TextGDI other)
     : base(other)
 {
     if (other.StringFormat != null)
         StringFormat = (StringFormat)other.StringFormat.Clone();
     else
         StringFormat = null;
 }
Exemple #2
0
 /// <summary>
 /// Copy constructor
 /// </summary>
 /// <param name="other"></param>
 public TextGDI(TextGDI other)
     : base(other)
 {
     if (other.StringFormat != null)
     {
         StringFormat = (StringFormat)other.StringFormat.Clone();
     }
     else
     {
         StringFormat = null;
     }
 }