/// <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(); }
/// <summary> /// The Copy Constructor /// </summary> /// <param name="rhs">The <see cref="EllipseObj"/> object from /// which to copy</param> public EllipseObj( BoxObj rhs ) : base(rhs) { }
/// <summary> /// The Copy Constructor /// </summary> /// <param name="rhs">The <see cref="EllipseObj"/> object from /// which to copy</param> public EllipseObj(BoxObj rhs) : base(rhs) { }
/// <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(); }