Set the variable to VALUE.
(self, value)
| 653 | Variable.__init__(self, master, value, name) |
| 654 | |
| 655 | def set(self, value): |
| 656 | """Set the variable to VALUE.""" |
| 657 | return self._tk.globalsetvar(self._name, self._tk.getboolean(value)) |
| 658 | |
| 659 | initialize = set |
| 660 |