MCPcopy Create free account
hub / github.com/scanny/python-pptx / CT_TextLineBreak

Class CT_TextLineBreak

src/pptx/oxml/text.py:371–385  ·  view source on GitHub ↗

`a:br` line break element

Source from the content-addressed store, hash-verified

369
370
371class 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
388class CT_TextNormalAutofit(BaseOxmlElement):

Callers

nothing calls this directly

Calls 1

ZeroOrOneClass · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…