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

Method _tblGrid_xml

src/docx/oxml/table.py:236–241  ·  view source on GitHub ↗
(cls, col_count: int, col_width: Length)

Source from the content-addressed store, hash-verified

234
235 @classmethod
236 def _tblGrid_xml(cls, col_count: int, col_width: Length) -> str:
237 xml = " <w:tblGrid>\n"
238 for _ in range(col_count):
239 xml += ' <w:gridCol w:w="%d"/>\n' % col_width.twips
240 xml += " </w:tblGrid>\n"
241 return xml
242
243 @classmethod
244 def _trs_xml(cls, row_count: int, col_count: int, col_width: Length) -> str:

Callers 1

_tbl_xmlMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected