Well, do something like this.
Let's say you want to know the position of 2nd row, use
Qt Code:
  1. QPointF pos = itemAt(1, 0)->pos();
To copy to clipboard, switch view to plain text mode 
Or maybe this would be more appropriate since you are interested probably only in x() coordinate
Qt Code:
  1. int rowPosition = itemAt(1, 0)->x();
To copy to clipboard, switch view to plain text mode