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

Class CT_Height

src/docx/oxml/table.py:38–46  ·  view source on GitHub ↗

Used for `w:trHeight` to specify a row height and row height rule.

Source from the content-addressed store, hash-verified

36
37
38class CT_Height(BaseOxmlElement):
39 """Used for `w:trHeight` to specify a row height and row height rule."""
40
41 val: Length | None = OptionalAttribute( # pyright: ignore[reportAssignmentType]
42 "w:val", ST_TwipsMeasure
43 )
44 hRule: WD_ROW_HEIGHT_RULE | None = OptionalAttribute( # pyright: ignore[reportAssignmentType]
45 "w:hRule", WD_ROW_HEIGHT_RULE
46 )
47
48
49class CT_Row(BaseOxmlElement):

Callers

nothing calls this directly

Calls 1

OptionalAttributeClass · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…