(cls, col_count: int, col_width: Length)
| 246 | |
| 247 | @classmethod |
| 248 | def _tcs_xml(cls, col_count: int, col_width: Length) -> str: |
| 249 | return ( |
| 250 | f" <w:tc>\n" |
| 251 | f" <w:tcPr>\n" |
| 252 | f' <w:tcW w:type="dxa" w:w="{col_width.twips}"/>\n' |
| 253 | f" </w:tcPr>\n" |
| 254 | f" <w:p/>\n" |
| 255 | f" </w:tc>\n" |
| 256 | ) * col_count |
| 257 | |
| 258 | |
| 259 | class CT_TblGrid(BaseOxmlElement): |