/// <summary> /// The Copy Constructor /// </summary> /// <param name="rhs">The <see c_ref="EllipseObj"/> object from /// which to copy</param> public EllipseObj( BoxObj rhs ) : base( rhs ) { }
/// <summary> /// The Copy Constructor /// </summary> /// <param name="rhs">The <see c_ref="BoxObj"/> object from which to copy</param> public BoxObj( BoxObj rhs ) : base( rhs ) { Border = rhs.Border.Clone(); Fill = rhs.Fill.Clone(); }
/// <summary> /// The Copy Constructor /// </summary> /// <param name="rhs">The <see c_ref="BoxObj"/> object from which to copy</param> public BoxObj(BoxObj rhs) : base(rhs) { Border = rhs.Border.Clone(); Fill = rhs.Fill.Clone(); }
/// <summary> /// The Copy Constructor /// </summary> /// <param name="rhs">The <see c_ref="EllipseObj"/> object from /// which to copy</param> public EllipseObj(BoxObj rhs) : base(rhs) { }