Retrieve the window placement in the desktop. @see: L{set_placement} @rtype: L{win32.WindowPlacement} @return: Window placement in the desktop. @raise WindowsError: An error occured while processing this request.
(self)
| 314 | win32.SetWindowText(self.get_handle(), text) |
| 315 | |
| 316 | def get_placement(self): |
| 317 | """ |
| 318 | Retrieve the window placement in the desktop. |
| 319 | |
| 320 | @see: L{set_placement} |
| 321 | |
| 322 | @rtype: L{win32.WindowPlacement} |
| 323 | @return: Window placement in the desktop. |
| 324 | |
| 325 | @raise WindowsError: An error occured while processing this request. |
| 326 | """ |
| 327 | return win32.GetWindowPlacement(self.get_handle()) |
| 328 | |
| 329 | def set_placement(self, placement): |
| 330 | """ |
nothing calls this directly
no test coverage detected