/// <summary> /// The Copy Constructor /// </summary> /// <param name="rhs">The <see cref="ImageObj"/> object from which to copy</param> public ImageObj( ImageObj rhs ) : base(rhs) { _image = rhs._image; _isScaled = rhs.IsScaled; }
/// <summary> /// The Copy Constructor /// </summary> /// <param name="rhs">The <see cref="ImageObj"/> object from which to copy</param> public ImageObj(ImageObj rhs) : base(rhs) { _image = rhs._image; _isScaled = rhs.IsScaled; }