Method getCellRect(int row, int column, boolean includeSpacing)
Return type: java.awt.Rectangle
Member of: javax.swing.JTable
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 Rectangle r = tb.getCellRect (1, 0, false);
2 Rectangle r = tb.getCellRect (1, 1, false);
3 scrollRectToVisible(getCellRect(0, 0, true));
4 Rectangle cellBounds = getCellRect(index, 0, true);
5 mTable.scrollRectToVisible(mTable.getCellRect(liRow-1,1,true));
6 Rectangle rect = table.getCellRect(row, col, false);
7 repaint(getCellRect(row, column, false));
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.