@rtype: str @return: Window class name. @raise WindowsError: An error occured while processing this request.
(self)
| 263 | # ------------------------------------------------------------------------------ |
| 264 | |
| 265 | def get_classname(self): |
| 266 | """ |
| 267 | @rtype: str |
| 268 | @return: Window class name. |
| 269 | |
| 270 | @raise WindowsError: An error occured while processing this request. |
| 271 | """ |
| 272 | return win32.GetClassName(self.get_handle()) |
| 273 | |
| 274 | def get_style(self): |
| 275 | """ |
nothing calls this directly
no test coverage detected