Set the variable to VALUE.
(self, value)
| 632 | Variable.__init__(self, master, value, name) |
| 633 | |
| 634 | def set(self, value): |
| 635 | """Set the variable to VALUE.""" |
| 636 | return self._tk.globalsetvar(self._name, self._tk.getboolean(value)) |
| 637 | |
| 638 | initialize = set |
| 639 |