@rtype: bool @return: C{True} if the window handle is still valid.
(self)
| 513 | # ------------------------------------------------------------------------------ |
| 514 | |
| 515 | def is_valid(self): |
| 516 | """ |
| 517 | @rtype: bool |
| 518 | @return: C{True} if the window handle is still valid. |
| 519 | """ |
| 520 | return win32.IsWindow(self.get_handle()) |
| 521 | |
| 522 | def is_visible(self): |
| 523 | """ |
no test coverage detected