MCPcopy Create free account
hub / github.com/scanny/python-pptx / CT_TableGrid

Class CT_TableGrid

src/pptx/oxml/table.py:403–413  ·  view source on GitHub ↗

`a:tblGrid` custom element class.

Source from the content-addressed store, hash-verified

401
402
403class 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
416class CT_TableProperties(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…