コード例 #1
0
ファイル: ScrollPane.java プロジェクト: ShadowLordAlpha/TWL
 /**
  * Tries to make the specified vertical area completely visible. If it is larger then the vertical
  * page size then it scrolls to the start of the area.
  *
  * @param start the position of the area
  * @param size size of the area
  * @param extra the extra space which should be visible around the area
  * @see Scrollbar#scrollToArea(int, int, int)
  */
 public void scrollToAreaY(int start, int size, int extra) {
   scrollbarV.scrollToArea(start, size, extra);
 }