mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-06-27 02:30:08 +00:00
14 lines
325 B
Python
14 lines
325 B
Python
![]() |
from docx.oxml.text.run import CT_R
|
||
|
from docx.text.paragraph import Paragraph
|
||
|
|
||
|
class Run:
|
||
|
_element: CT_R
|
||
|
_r: CT_R
|
||
|
def __init__(self, r: CT_R, parent: Paragraph) -> None: ...
|
||
|
@property
|
||
|
def bold(self) -> bool: ...
|
||
|
@property
|
||
|
def italic(self) -> bool: ...
|
||
|
@property
|
||
|
def text(self) -> str: ...
|