`w:tblGrid` element. Child of `w:tbl`, holds `w:gridCol> elements that define column count, width, etc.
| 257 | |
| 258 | |
| 259 | class CT_TblGrid(BaseOxmlElement): |
| 260 | """`w:tblGrid` element. |
| 261 | |
| 262 | Child of `w:tbl`, holds `w:gridCol> elements that define column count, width, etc. |
| 263 | """ |
| 264 | |
| 265 | add_gridCol: Callable[[], CT_TblGridCol] |
| 266 | gridCol_lst: list[CT_TblGridCol] |
| 267 | |
| 268 | gridCol = ZeroOrMore("w:gridCol", successors=("w:tblGridChange",)) |
| 269 | |
| 270 | |
| 271 | class CT_TblGridCol(BaseOxmlElement): |
nothing calls this directly
no test coverage detected
searching dependent graphs…