@rtype: int @return: Window style mask. @raise WindowsError: An error occured while processing this request.
(self)
| 272 | return win32.GetClassName(self.get_handle()) |
| 273 | |
| 274 | def get_style(self): |
| 275 | """ |
| 276 | @rtype: int |
| 277 | @return: Window style mask. |
| 278 | |
| 279 | @raise WindowsError: An error occured while processing this request. |
| 280 | """ |
| 281 | return win32.GetWindowLongPtr(self.get_handle(), win32.GWL_STYLE) |
| 282 | |
| 283 | def get_extended_style(self): |
| 284 | """ |
nothing calls this directly
no test coverage detected