Read-only reference to collection of cells in row. An individual cell is referenced using list notation, e.g. `cell = row.cells[0]`.
(self)
| 407 | |
| 408 | @property |
| 409 | def cells(self): |
| 410 | """Read-only reference to collection of cells in row. |
| 411 | |
| 412 | An individual cell is referenced using list notation, e.g. `cell = row.cells[0]`. |
| 413 | """ |
| 414 | return _CellCollection(self._tr, self) |
| 415 | |
| 416 | @property |
| 417 | def height(self) -> Length: |
nothing calls this directly
no test coverage detected