예제 #1
0
 /// <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;
 }
예제 #2
0
 /// <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;
 }