/// <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; }
/// <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; }