(self)
| 195 | |
| 196 | @property |
| 197 | def last_child(self): |
| 198 | result = core.BNGetLastLinearViewObjectChild(self.handle) |
| 199 | if not result: |
| 200 | return None |
| 201 | return LinearViewObject(result, self) |
| 202 | |
| 203 | @property |
| 204 | def previous(self): |
nothing calls this directly
no test coverage detected