2023-09-19 15:32:46 -07:00
|
|
|
from docx.oxml.xmlchemy import BaseOxmlElement
|
|
|
|
|
|
|
|
class CT_Br(BaseOxmlElement):
|
2023-10-12 23:26:14 -07:00
|
|
|
type: str | None
|
|
|
|
clear: str | None
|
|
|
|
@property
|
|
|
|
def text(self) -> str: ...
|
|
|
|
|
|
|
|
class CT_Cr(BaseOxmlElement):
|
|
|
|
@property
|
|
|
|
def text(self) -> str: ...
|
|
|
|
|
|
|
|
class CT_NoBreakHyphen(BaseOxmlElement):
|
|
|
|
@property
|
|
|
|
def text(self) -> str: ...
|
|
|
|
|
|
|
|
class CT_PTab(BaseOxmlElement):
|
|
|
|
@property
|
|
|
|
def text(self) -> str: ...
|
|
|
|
|
|
|
|
class CT_R(BaseOxmlElement):
|
|
|
|
text: str
|
|
|
|
|
|
|
|
class CT_Tab(BaseOxmlElement):
|
|
|
|
@property
|
|
|
|
def text(self) -> str: ...
|
2023-09-19 15:32:46 -07:00
|
|
|
|
2023-10-12 23:26:14 -07:00
|
|
|
class CT_Text(BaseOxmlElement):
|
|
|
|
@property
|
|
|
|
def text(self) -> str: ...
|