The wx docs for the old 2.5.3 version says this is for "backward compatibility" and it seems to have disappeared completely in the latest version.
What replaces it?
Apparently nothing. It's implemented like this:
int GetViewHeight()
{ return 0; }
Or, more directly, what do I use to find out how many rows of my grid is visible so I know how many rows to "page" at a time?
You could probably do something with CalcUnscrolledPosition and XYToCell to figure out what cell is at the top of the window and the bottom of the window, and from that figure out how many rows are currently visible. The tricky part is to take into account the fact that rows can be different heights...
ยทยทยท
--
Robin Dunn
Software Craftsman http://wxPython.org Java give you jitters? Relax with wxPython!