MCPcopy Index your code
hub / github.com/python-openxml/python-docx / CT_TblGrid

Class CT_TblGrid

src/docx/oxml/table.py:259–268  ·  view source on GitHub ↗

`w:tblGrid` element. Child of `w:tbl`, holds `w:gridCol> elements that define column count, width, etc.

Source from the content-addressed store, hash-verified

257
258
259class 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
271class CT_TblGridCol(BaseOxmlElement):

Callers

nothing calls this directly

Calls 1

ZeroOrMoreClass · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…