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

Method columns

src/pptx/table.py:43–49  ·  view source on GitHub ↗

|_ColumnCollection| instance for this table. Provides access to |_Column| objects representing the table's columns. |_Column| objects are accessed using list notation, e.g. `col = tbl.columns[0]`.

(self)

Source from the content-addressed store, hash-verified

41
42 @lazyproperty
43 def columns(self) -> _ColumnCollection:
44 """|_ColumnCollection| instance for this table.
45
46 Provides access to |_Column| objects representing the table's columns. |_Column| objects
47 are accessed using list notation, e.g. `col = tbl.columns[0]`.
48 """
49 return _ColumnCollection(self._tbl, self)
50
51 @property
52 def first_col(self) -> bool:

Callers

nothing calls this directly

Calls 1

_ColumnCollectionClass · 0.85

Tested by

no test coverage detected