Configure the image.
(self, **kw)
| 4114 | return self.tk.call(self.name, 'configure', '-'+key) |
| 4115 | |
| 4116 | def configure(self, **kw): |
| 4117 | """Configure the image.""" |
| 4118 | res = () |
| 4119 | for k, v in _cnfmerge(kw).items(): |
| 4120 | if v is not None: |
| 4121 | if k[-1] == '_': k = k[:-1] |
| 4122 | res = res + ('-'+k, v) |
| 4123 | self.tk.call((self.name, 'config') + res) |
| 4124 | |
| 4125 | config = configure |
| 4126 |