Used for `w:trHeight` to specify a row height and row height rule.
| 36 | |
| 37 | |
| 38 | class 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 | |
| 49 | class CT_Row(BaseOxmlElement): |
nothing calls this directly
no test coverage detected
searching dependent graphs…