The tc element immediately below this one in its grid column.
(self)
| 742 | |
| 743 | @property |
| 744 | def _tc_below(self) -> CT_Tc | None: |
| 745 | """The tc element immediately below this one in its grid column.""" |
| 746 | tr_below = self._tr_below |
| 747 | if tr_below is None: |
| 748 | return None |
| 749 | return tr_below.tc_at_grid_offset(self.grid_offset) |
| 750 | |
| 751 | @property |
| 752 | def _tr(self) -> CT_Row: |
nothing calls this directly
no test coverage detected