Return `a:tc` element at `row_idx`, `col_idx`.
(self, row_idx: int, col_idx: int)
| 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. |
no outgoing calls