(self)
| 188 | |
| 189 | @property |
| 190 | def first_child(self): |
| 191 | result = core.BNGetFirstLinearViewObjectChild(self.handle) |
| 192 | if not result: |
| 193 | return None |
| 194 | return LinearViewObject(result, self) |
| 195 | |
| 196 | @property |
| 197 | def last_child(self): |
nothing calls this directly
no test coverage detected