MCPcopy Index your code
hub / github.com/python-openxml/python-docx / _tc_below

Method _tc_below

src/docx/oxml/table.py:744–749  ·  view source on GitHub ↗

The tc element immediately below this one in its grid column.

(self)

Source from the content-addressed store, hash-verified

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:

Callers

nothing calls this directly

Calls 1

tc_at_grid_offsetMethod · 0.80

Tested by

no test coverage detected