The `w:tc` element immediately above this one in its grid column.
(self)
| 737 | |
| 738 | @property |
| 739 | def _tc_above(self) -> CT_Tc: |
| 740 | """The `w:tc` element immediately above this one in its grid column.""" |
| 741 | return self._tr_above.tc_at_grid_offset(self.grid_offset) |
| 742 | |
| 743 | @property |
| 744 | def _tc_below(self) -> CT_Tc | None: |
nothing calls this directly
no test coverage detected