Query or modify the configuration options of an embedded image at INDEX. Similar to configure() except that it applies to the specified embedded image.
(self, index, cnf=None, **kw)
| 4028 | return self.tk.call(self._w, "image", "cget", index, option) |
| 4029 | |
| 4030 | def image_configure(self, index, cnf=None, **kw): |
| 4031 | """Query or modify the configuration options of an embedded image at INDEX. |
| 4032 | |
| 4033 | Similar to configure() except that it applies to the specified |
| 4034 | embedded image. |
| 4035 | """ |
| 4036 | return self._configure(('image', 'configure', index), cnf, kw) |
| 4037 | |
| 4038 | def image_create(self, index, cnf={}, **kw): |
| 4039 | """Create an embedded image at INDEX.""" |
nothing calls this directly
no test coverage detected