[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[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;
        }
    });

And which set the height of all the rows. How to set the height for every row?
Thanks in advance!