Called by a column when its width changes. Triggers the graphic frame to recalculate its total width (as the sum of the column widths).
(self)
| 129 | self._graphic_frame.height = new_table_height |
| 130 | |
| 131 | def notify_width_changed(self) -> None: |
| 132 | """Called by a column when its width changes. |
| 133 | |
| 134 | Triggers the graphic frame to recalculate its total width (as the sum of the column |
| 135 | widths). |
| 136 | """ |
| 137 | new_table_width = Emu(sum([col.width for col in self.columns])) |
| 138 | self._graphic_frame.width = new_table_width |
| 139 | |
| 140 | @property |
| 141 | def part(self) -> BaseSlidePart: |