Exemplo n.º 1
0
 /// <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;
 }
Exemplo n.º 2
0
 /// <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;
 }