Compatibility with ctypes. Allows passing transparently a Window object to an API call.
(self)
| 140 | |
| 141 | @property |
| 142 | def _as_parameter_(self): |
| 143 | """ |
| 144 | Compatibility with ctypes. |
| 145 | Allows passing transparently a Window object to an API call. |
| 146 | """ |
| 147 | return self.get_handle() |
| 148 | |
| 149 | def get_handle(self): |
| 150 | """ |
nothing calls this directly
no test coverage detected