Reputation: 450
Is there any way to know the Height of a ListViewItem?
(I found it depended on the font size..)
Thanks, Yehudit
Upvotes: 1
Views: 2067
Reputation: 452
try this:
int xh = ListView.GetItemRect(itemIndex).Height;
Upvotes: 4