Configure the image.
(self, **kw)
| 4253 | return self.tk.call(self.name, 'configure', '-'+key) |
| 4254 | |
| 4255 | def configure(self, **kw): |
| 4256 | """Configure the image.""" |
| 4257 | res = () |
| 4258 | for k, v in _cnfmerge(kw).items(): |
| 4259 | if v is not None: |
| 4260 | if k[-1] == '_': k = k[:-1] |
| 4261 | res = res + ('-'+k, v) |
| 4262 | self.tk.call((self.name, 'config') + res) |
| 4263 | |
| 4264 | config = configure |
| 4265 |