Scrolling SWT Table programmatically
How to do vertical scroll of SWT table programatically? I'm implementing search function on the table. When an item was found then it will be scrolled to the item found. There are several methods you might want to try: Table.showItem(TableItem) Table.showSelection() Table.showColumn(TableColumn) Table.setTopIndex(int) Other than that, I suggest using a TableViewer from JFace . Then you'd scroll to an item with this method: TableViewer.reveal(Object) My full time job is to develop SWT (on Linux), I hope to be able to provide a comprehensive answer: From a SWT code point of view (at least on on