| [news.eclipse.platform.swt] How to set the row height in a Table? |
Hi,
I try but fail to find the API to set the row height of a Table.
The only way I know is:
table.addListener(SWT.MeasureItem, new Listener() {
public void handleEvent(Event event) {
event.height =rowHeight;
}
});