/// <summary>
 /// GR: Individual controls should reset toolbar postion if needed.
 /// Do no do in refresh of toolbar becaues it may happen often and cause bugs (autoscrolling to top every few frames when not intended)
 /// </summary>
 public void ScrollToolbarToTop()
 {
     m_scrollBar.SetPage(0);
 }
 public void SetPageVertical(float pageNumber)
 {
     m_scrollbarV.SetPage(pageNumber);
 }
예제 #3
0
 public void Clear()
 {
     m_label.Clear();
     m_scrollbar.SetPage(0);
     RecalculateScrollBar();
 }