+
+ int GetRowForIndex(int n) const
+ {
+ if(m_windowStyle & wxRA_SPECIFY_COLS)
+ return n / GetMajorDim();
+ else
+ return n % GetMajorDim();
+ }
+
+ int GetColumnForIndex(int n) const
+ {
+ if(m_windowStyle & wxRA_SPECIFY_COLS)
+ return n % GetMajorDim();
+ else
+ return n / GetMajorDim();
+ }