[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?
|
- From: pijnmar@xxxxxxx (Mp)
- Date: Wed, 6 Jul 2005 13:12:26 +0000 (UTC)
- Newsgroups: eclipse.platform.swt
- Organization: not organized
- User-agent: NewsPortal/0.36 (http://florian-amrhein.de/newsportal)
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?)