Return a |_Row| instance, newly added bottom-most to the table.
(self)
| 45 | return _Column(gridCol, self) |
| 46 | |
| 47 | def add_row(self): |
| 48 | """Return a |_Row| instance, newly added bottom-most to the table.""" |
| 49 | tbl = self._tbl |
| 50 | tr = tbl.add_tr() |
| 51 | for gridCol in tbl.tblGrid.gridCol_lst: |
| 52 | tc = tr.add_tc() |
| 53 | if gridCol.w is not None: |
| 54 | tc.width = gridCol.w |
| 55 | return _Row(tr, self) |
| 56 | |
| 57 | @property |
| 58 | def alignment(self) -> WD_TABLE_ALIGNMENT | None: |