(self)
| 211 | |
| 212 | @property |
| 213 | def next(self): |
| 214 | if self._parent is None: |
| 215 | return None |
| 216 | result = core.BNGetNextLinearViewObjectChild(self._parent.handle, self.handle) |
| 217 | if not result: |
| 218 | return None |
| 219 | return LinearViewObject(result, self._parent) |
| 220 | |
| 221 | @property |
| 222 | def start(self): |