/// <summary> /// The Copy Constructor /// </summary> /// <param name="rhs">The <see cref="ScrollRange"/> object from which to copy</param> public ScrollRange( ScrollRange rhs ) { _min = rhs._min; _max = rhs._max; _isScrollable = rhs._isScrollable; }
/// <summary> /// The Copy Constructor /// </summary> /// <param name="rhs">The <see cref="ScrollRange"/> object from which to copy</param> public ScrollRange(ScrollRange rhs) { _min = rhs._min; _max = rhs._max; _isScrollable = rhs._isScrollable; }