Get the window coordinates in the desktop. @rtype: L{win32.Rect} @return: Rectangle occupied by the window in the desktop. @raise WindowsError: An error occured while processing this request.
(self)
| 340 | win32.SetWindowPlacement(self.get_handle(), placement) |
| 341 | |
| 342 | def get_screen_rect(self): |
| 343 | """ |
| 344 | Get the window coordinates in the desktop. |
| 345 | |
| 346 | @rtype: L{win32.Rect} |
| 347 | @return: Rectangle occupied by the window in the desktop. |
| 348 | |
| 349 | @raise WindowsError: An error occured while processing this request. |
| 350 | """ |
| 351 | return win32.GetWindowRect(self.get_handle()) |
| 352 | |
| 353 | def get_client_rect(self): |
| 354 | """ |