`a:br` line break element
| 369 | |
| 370 | |
| 371 | class CT_TextLineBreak(BaseOxmlElement): |
| 372 | """`a:br` line break element""" |
| 373 | |
| 374 | get_or_add_rPr: Callable[[], CT_TextCharacterProperties] |
| 375 | |
| 376 | rPr = ZeroOrOne("a:rPr", successors=()) |
| 377 | |
| 378 | @property |
| 379 | def text(self): # pyright: ignore[reportIncompatibleMethodOverride] |
| 380 | """Unconditionally a single vertical-tab character. |
| 381 | |
| 382 | A line break element can contain no text other than the implicit line feed it |
| 383 | represents. |
| 384 | """ |
| 385 | return "\v" |
| 386 | |
| 387 | |
| 388 | class CT_TextNormalAutofit(BaseOxmlElement): |
nothing calls this directly
no test coverage detected
searching dependent graphs…