Query or sets the default value of the specified option(s) in style. Each key in kw is an option and each value is either a string or a sequence identifying the value for that option.
(self, style, query_opt=None, **kw)
| 355 | |
| 356 | |
| 357 | def configure(self, style, query_opt=None, **kw): |
| 358 | """Query or sets the default value of the specified option(s) in |
| 359 | style. |
| 360 | |
| 361 | Each key in kw is an option and each value is either a string or |
| 362 | a sequence identifying the value for that option.""" |
| 363 | if query_opt is not None: |
| 364 | kw[query_opt] = None |
| 365 | result = _val_or_dict(self.tk, kw, self._name, "configure", style) |
| 366 | if result or query_opt: |
| 367 | return result |
| 368 | |
| 369 | |
| 370 | def map(self, style, query_opt=None, **kw): |