コード例 #1
0
ファイル: ScrollRange.cs プロジェクト: GunioRobot/zeegraph
 /// <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;
 }
コード例 #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;
 }