Enable the user input for the window. @see: L{disable} @raise WindowsError: An error occured while processing this request.
(self)
| 565 | # ------------------------------------------------------------------------------ |
| 566 | |
| 567 | def enable(self): |
| 568 | """ |
| 569 | Enable the user input for the window. |
| 570 | |
| 571 | @see: L{disable} |
| 572 | |
| 573 | @raise WindowsError: An error occured while processing this request. |
| 574 | """ |
| 575 | win32.EnableWindow(self.get_handle(), True) |
| 576 | |
| 577 | def disable(self): |
| 578 | """ |
no test coverage detected