Baloo
Baloo

Reputation: 221

Get selected rows of a table with SWT.MULTI

I have a Table table with SWT.MULTI. Now I want to get the selected rows. Till now I had a single selection and got the selected row with a selection listener. But how do I get the selected rows of the SWT.Multi table?

Can anyone help me?

Upvotes: 3

Views: 5173

Answers (1)

Mario Marinato
Mario Marinato

Reputation: 4617

table.getSelection() returns an array of TableItems.

Upvotes: 4

Related Questions