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