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

Method cells

src/pptx/table.py:409–414  ·  view source on GitHub ↗

Read-only reference to collection of cells in row. An individual cell is referenced using list notation, e.g. `cell = row.cells[0]`.

(self)

Source from the content-addressed store, hash-verified

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:

Callers

nothing calls this directly

Calls 1

_CellCollectionClass · 0.85

Tested by

no test coverage detected