Exemplo n.º 1
0
 public override void GetSliderLocation(out SimplePoint first, out SimplePoint last)
 {
     base.GetVSliderLocation(out first, out last);
 }
Exemplo n.º 2
0
 /// <summary>
 /// 建スライダー位置取得
 /// </summary>
 /// <param name="top"></param>
 /// <param name="bottom"></param>
 protected void GetVSliderLocation(out SimplePoint top, out SimplePoint bottom)
 {
     top    = this.SliderTop.Location.ToSimplePoint();
     bottom = this.SliderBottom.Location.ToSimplePoint();
 }
Exemplo n.º 3
0
 public abstract void GetSliderLocation(out SimplePoint first, out SimplePoint last);
Exemplo n.º 4
0
 /// <summary>
 /// 横スライダー位置取得
 /// </summary>
 /// <param name="Left"></param>
 /// <param name="Right"></param>
 protected void GetHSliderLocation(out SimplePoint left, out SimplePoint right)
 {
     left  = this.SliderLeft.Location.ToSimplePoint();
     right = this.SliderRight.Location.ToSimplePoint();
 }