ListView scrollbar ?!

  • Thread starter Thread starter Grei
  • Start date Start date
G

Grei

how to manipulate ListView scrollbar?

let's say i want to move Horizontal/Vertical scroll to some position.
Also i need to read this position.
 
Assuming you had more than 44 items in your listview:

this.ListView1.Items[44].EnsureVisible();
 
Back
Top