(self, tr: CT_TableRow, parent: _Row)
| 428 | """Horizontal sequence of row cells""" |
| 429 | |
| 430 | def __init__(self, tr: CT_TableRow, parent: _Row): |
| 431 | super(_CellCollection, self).__init__(parent) |
| 432 | self._parent = parent |
| 433 | self._tr = tr |
| 434 | |
| 435 | def __getitem__(self, idx: int) -> _Cell: |
| 436 | """Provides indexed access, (e.g. 'cells[0]').""" |