wx.GridBagSizer.FindItem will return a wx.GBSizerItem, which has a
"Pos" property, which returns a wx.GBPosition object, which you can
use to get the row/col of the found item.
sz = wx.GridBagSizer()
sz.Add(item, (0,1))
row, col = sz.FindItem(item).Pos.Get()
···
On 1/12/07, f rom <etaoinbe@yahoo.com> wrote:
How can I delete an item from a gridbagsizer so I can add later again add the same row,col ?