Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[platform-swt-dev] How can I chang the height of the TableTreeItem in a TableTree ?

I have googled and found a way that using this code :

int height = 10;
TableTreeItem item = new TableTreeItem(tableTree,SWT.NONE);
Image image = new Image(null, 1, height);
item.setImage(image);

but it didn't work !
could anyone help me ?
Thanks for any help !


Back to the top