Exemple #1
0
 /// <summary>
 /// The Copy Constructor
 /// </summary>
 /// <param name="rhs">The <see cref="ImageItem"/> object from which to copy</param>
 public ImageItem(ImageItem rhs) : base(rhs)
 {
     image    = rhs.image;
     isScaled = rhs.IsScaled;
 }
Exemple #2
0
 /// <summary>
 /// The Copy Constructor
 /// </summary>
 /// <param name="rhs">The <see cref="ImageItem"/> object from which to copy</param>
 public ImageItem( ImageItem rhs )
     : base(rhs)
 {
     image = rhs.image;
     isScaled = rhs.IsScaled;
 }