`a:tblGrid` custom element class.
| 401 | |
| 402 | |
| 403 | class CT_TableGrid(BaseOxmlElement): |
| 404 | """`a:tblGrid` custom element class.""" |
| 405 | |
| 406 | gridCol_lst: list[CT_TableCol] |
| 407 | _add_gridCol: Callable[..., CT_TableCol] |
| 408 | |
| 409 | gridCol = ZeroOrMore("a:gridCol") |
| 410 | |
| 411 | def add_gridCol(self, width: Length) -> CT_TableCol: |
| 412 | """A newly appended `a:gridCol` child element having its `w` attribute set to `width`.""" |
| 413 | return self._add_gridCol(w=width) |
| 414 | |
| 415 | |
| 416 | class CT_TableProperties(BaseOxmlElement): |
nothing calls this directly
no test coverage detected
searching dependent graphs…