SetCellSize for virtual grid table

With normal wx.Grid object, one can use SetCellSize to specify that a
cell spans several rows/columns. However, if the grid data is provided
by a virtual grid table derived from PyGridTableBase, how does the
virtal table let the grid know which sell spans how many columns/rows?

And in the wxWidgets documentation there isn't even the mentioning of
the method SetCellSize, where can I find more information about this
method?

···

--
Hong Yuan

大管家网上建材超市
装修装潢建材一站式购物
http://www.homemaster.cn

Yuan HOng wrote:

With normal wx.Grid object, one can use SetCellSize to specify that a
cell spans several rows/columns. However, if the grid data is provided
by a virtual grid table derived from PyGridTableBase, how does the
virtal table let the grid know which sell spans how many columns/rows?

I don't think that the table needs to do anything special in this case,
so it can just do

  self.GetView().SetCellSize(row, col, numrows, numcols)

And in the wxWidgets documentation there isn't even the mentioning of
the method SetCellSize, where can I find more information about this
method?

There may not be anything else currently, other than the source.

···

--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!