Hi all,

I have a QTableView and need more than one row selected.

Qt Code:
  1. void QTableView::selectRow(int row)
To copy to clipboard, switch view to plain text mode 

selects one row olny, and

Qt Code:
  1. ui->tableView->selectRow(0);
  2. ui->tableView->selectRow(1);
  3. ui->tableView->selectRow(2);
To copy to clipboard, switch view to plain text mode 

selects row 3 only!

Is there a way to select more than one row together?

Thx!
Chris