Ejemplo n.º 1
0
 /// <summary>
 /// The Copy Constructor
 /// </summary>
 /// <param name="rhs">The <see cref="BoxObj"/> object from which to copy</param>
 public BoxObj( BoxObj rhs )
     : base(rhs)
 {
     this.Border = rhs.Border.Clone();
     this.Fill = rhs.Fill.Clone();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// The Copy Constructor
 /// </summary>
 /// <param name="rhs">The <see cref="EllipseObj"/> object from
 /// which to copy</param>
 public EllipseObj( BoxObj rhs )
     : base(rhs)
 {
 }
Ejemplo n.º 3
0
 /// <summary>
 /// The Copy Constructor
 /// </summary>
 /// <param name="rhs">The <see cref="EllipseObj"/> object from
 /// which to copy</param>
 public EllipseObj(BoxObj rhs) : base(rhs)
 {
 }
Ejemplo n.º 4
0
 /// <summary>
 /// The Copy Constructor
 /// </summary>
 /// <param name="rhs">The <see cref="BoxObj"/> object from which to copy</param>
 public BoxObj(BoxObj rhs) : base(rhs)
 {
     this.Border = rhs.Border.Clone();
     this.Fill   = rhs.Fill.Clone();
 }