MCPcopy Create free account
hub / github.com/scanny/python-pptx / iter_cells

Method iter_cells

src/pptx/table.py:90–95  ·  view source on GitHub ↗

Generate _Cell object for each cell in this table. Each grid cell is generated in left-to-right, top-to-bottom order.

(self)

Source from the content-addressed store, hash-verified

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:

Calls 2

_CellClass · 0.85
iter_tcsMethod · 0.45

Tested by 1