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

Method iter_except_left_col_tcs

src/pptx/oxml/table.py:499–503  ·  view source on GitHub ↗

Generate each `a:tc` element not in leftmost column of range.

(self)

Source from the content-addressed store, hash-verified

497 return False
498
499 def iter_except_left_col_tcs(self):
500 """Generate each `a:tc` element not in leftmost column of range."""
501 for tr in self._tbl.tr_lst[self._top : self._bottom]:
502 for tc in tr.tc_lst[self._left + 1 : self._right]:
503 yield tc
504
505 def iter_except_top_row_tcs(self):
506 """Generate each `a:tc` element in non-first rows of range."""

Callers 2

mergeMethod · 0.95

Calls

no outgoing calls