Add the width of `other_tc` to this cell. Does nothing if either this tc or `other_tc` does not have a specified width.
(self, other_tc: CT_Tc)
| 565 | tcPr.width = value |
| 566 | |
| 567 | def _add_width_of(self, other_tc: CT_Tc): |
| 568 | """Add the width of `other_tc` to this cell. |
| 569 | |
| 570 | Does nothing if either this tc or `other_tc` does not have a specified width. |
| 571 | """ |
| 572 | if self.width and other_tc.width: |
| 573 | self.width = Length(self.width + other_tc.width) |
| 574 | |
| 575 | def _grow_to(self, width: int, height: int, top_tc: CT_Tc | None = None): |
| 576 | """Grow this cell to `width` grid columns and `height` rows. |