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

Method tc

src/pptx/oxml/table.py:135–137  ·  view source on GitHub ↗

Return `a:tc` element at `row_idx`, `col_idx`.

(self, row_idx: int, col_idx: int)

Source from the content-addressed store, hash-verified

133 return tbl
134
135 def tc(self, row_idx: int, col_idx: int) -> CT_TableCell:
136 """Return `a:tc` element at `row_idx`, `col_idx`."""
137 return self.tr_lst[row_idx].tc_lst[col_idx]
138
139 def _get_boolean_property(self, propname: str) -> bool:
140 """Generalized getter for the boolean properties on the `a:tblPr` child element.

Callers 5

cellMethod · 0.80
from_merge_originMethod · 0.80
tcsMethod · 0.80

Calls

no outgoing calls

Tested by 3

tcsMethod · 0.64