(self, xsize=0, ysize=0)
| 247 | self.tk.call('tixForm', 'forget', self._w) |
| 248 | |
| 249 | def grid(self, xsize=0, ysize=0): |
| 250 | if (not xsize) and (not ysize): |
| 251 | x = self.tk.call('tixForm', 'grid', self._w) |
| 252 | y = self.tk.splitlist(x) |
| 253 | z = () |
| 254 | for x in y: |
| 255 | z = z + (self.tk.getint(x),) |
| 256 | return z |
| 257 | return self.tk.call('tixForm', 'grid', self._w, xsize, ysize) |
| 258 | |
| 259 | def info(self, option=None): |
| 260 | if not option: |