Java JTable Scroll scrollToPosition(JTable table, int insertRow)

Here you can find the source of scrollToPosition(JTable table, int insertRow)

Description

scroll To Position

License

Open Source License

Declaration

public static void scrollToPosition(JTable table, int insertRow) 

Method Source Code

//package com.java2s;
/*/* w  w  w . java2 s .  c  om*/
 This file is part of RouteConverter.

 RouteConverter is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.

 RouteConverter is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with RouteConverter; if not, write to the Free Software
 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

 Copyright (C) 2007 Christian Pesch. All Rights Reserved.
 */

import javax.swing.*;

import java.awt.*;

public class Main {
    public static void scrollToPosition(JTable table, int insertRow) {
        Rectangle rectangle = table.getCellRect(insertRow, 1, true);
        table.scrollRectToVisible(rectangle);
    }
}

Related

  1. getScrollPane(JTable myTable)
  2. makeTransparant(JTable table, JScrollPane scrollPane)
  3. scroll(JTable table, int rowIndex, int vColIndex)
  4. scrollToCenter(JTable table, int rowIndex, int vColIndex)
  5. scrollToLastSelectedRow(final JTable table)
  6. scrollToRow(JTable table, int row)
  7. scrollToSelectedRow(JTable table)
  8. scrollToTableCell(JTable table, int rowIndex, int colIndex)
  9. scrollToVisible(final JTable table, final int rowIndex, final int vColIndex)