Return the value of busy configuration option. The widget must have been previously made busy by tk_busy_hold(). Option may have any of the values accepted by tk_busy_hold().
(self, option)
| 936 | self.tk.call(('bell',) + self._displayof(displayof)) |
| 937 | |
| 938 | def tk_busy_cget(self, option): |
| 939 | """Return the value of busy configuration option. |
| 940 | |
| 941 | The widget must have been previously made busy by |
| 942 | tk_busy_hold(). Option may have any of the values accepted by |
| 943 | tk_busy_hold(). |
| 944 | """ |
| 945 | return self.tk.call('tk', 'busy', 'cget', self._w, '-'+option) |
| 946 | busy_cget = tk_busy_cget |
| 947 | |
| 948 | def tk_busy_configure(self, cnf=None, **kw): |