ListView srcollbar ?

  • 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.
 
Well, if you can get a handle on the item, you could do this:

this.listView1.SelectedItems[0].EnsureVisible();

(assuming you wanted to ensure that the first selected item is visible..)
 
Back
Top