Re: line size of the listview
- Posted by m_sabal May 14, 2010
- 1669 views
This is untested, and it's been a while since I've played with the internals of Win32Lib, but this should at least get you started.
atom rectptr atom top,bottom,height rectptr = allocate(16) VOID = sendMessage(id,LVM_GETITEMRECT,rectptr,0) top = peek4u(rectptr+4) bottom = peek4u(rectptr+12) height = bottom-top