Generate _Cell object for each cell in this table. Each grid cell is generated in left-to-right, top-to-bottom order.
(self)
| 88 | self._tbl.bandRow = value |
| 89 | |
| 90 | def iter_cells(self) -> Iterator[_Cell]: |
| 91 | """Generate _Cell object for each cell in this table. |
| 92 | |
| 93 | Each grid cell is generated in left-to-right, top-to-bottom order. |
| 94 | """ |
| 95 | return (_Cell(tc, self) for tc in self._tbl.iter_tcs()) |
| 96 | |
| 97 | @property |
| 98 | def last_col(self) -> bool: |