Question

I just found out, that its somehow impossible to align an image in a swt tableviewer. Creating a TableColumn with SWT.RIGHT (for instance) has no effect on that column if its labelprovider returns an image for it. Question: Is there any other way to align an image instead of modifiying the image file itself and put some extra pixel into it?

Was it helpful?

Solution

I believe that you're running into a limitation of the underlying platform (or something to that effect). You can have total control over what goes into the cell if you draw it yourself. There is a snippet that shows you how to do this.

Table example snippet: draw images on right side of table item

Of course, you'll also have to draw any text you want in the cell.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top