`w:vAlign` element, specifying vertical alignment of cell.
| 962 | |
| 963 | |
| 964 | class CT_VerticalJc(BaseOxmlElement): |
| 965 | """`w:vAlign` element, specifying vertical alignment of cell.""" |
| 966 | |
| 967 | val: WD_CELL_VERTICAL_ALIGNMENT = RequiredAttribute( # pyright: ignore[reportAssignmentType] |
| 968 | "w:val", WD_CELL_VERTICAL_ALIGNMENT |
| 969 | ) |
| 970 | |
| 971 | |
| 972 | class CT_VMerge(BaseOxmlElement): |
nothing calls this directly
no test coverage detected
searching dependent graphs…