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

Method col_idx

src/pptx/oxml/table.py:245–248  ·  view source on GitHub ↗

Offset of this cell's column in its table.

(self)

Source from the content-addressed store, hash-verified

243
244 @property
245 def col_idx(self) -> int:
246 """Offset of this cell's column in its table."""
247 # ---tc elements come before any others in `a:tr` element---
248 return cast(CT_TableRow, self.getparent()).index(self)
249
250 @property
251 def is_merge_origin(self) -> bool:

Callers

nothing calls this directly

Calls 1

indexMethod · 0.45

Tested by

no test coverage detected