Offset of this cell's column in its table.
(self)
| 243 | |
| 244 | @property |
| 245 | def col_idx(self) -> int: |
| 246 | """Offset of this cell's column in its table.""" |
| 247 | # ---tc elements come before any others in `a:tr` element--- |
| 248 | return cast(CT_TableRow, self.getparent()).index(self) |
| 249 | |
| 250 | @property |
| 251 | def is_merge_origin(self) -> bool: |