Generate each `a:tc` element not in leftmost column of range.
(self)
| 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.""" |
no outgoing calls