[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform.swt] Re: How do I set the height of a table row?

TableItem item = new TableItem(yourTable, SWT.NONE);
item.setText(0, "ColumnText");
Image image = new Image(null, 1, 20);
item.setImage(image);


This will make all rows the same height. I did not find a way to do it differently. Anyone a suggestion for setting initial row height when no records are added (w/o adding empty row?)