Custom element class for `a:latin`, `a:ea`, `a:cs`, and `a:sym`. These occur as child elements of CT_TextCharacterProperties, e.g. `a:rPr`.
| 358 | |
| 359 | |
| 360 | class CT_TextFont(BaseOxmlElement): |
| 361 | """Custom element class for `a:latin`, `a:ea`, `a:cs`, and `a:sym`. |
| 362 | |
| 363 | These occur as child elements of CT_TextCharacterProperties, e.g. `a:rPr`. |
| 364 | """ |
| 365 | |
| 366 | typeface: str = RequiredAttribute( # pyright: ignore[reportAssignmentType] |
| 367 | "typeface", ST_TextTypeface |
| 368 | ) |
| 369 | |
| 370 | |
| 371 | class CT_TextLineBreak(BaseOxmlElement): |
nothing calls this directly
no test coverage detected
searching dependent graphs…