Source code for ooodev.format.inner.modify.draw.para_style_base_multi
# region Imports
from __future__ import annotations
from typing import Tuple
from ooodev.format.inner.modify.draw.draw_style_base_multi import DrawStyleBaseMulti
# endregion Imports
[docs]class ParaStyleBaseMulti(DrawStyleBaseMulti):
"""
Paragraph Style Base Multi
.. versionadded:: 0.17.12
"""
def _supported_services(self) -> Tuple[str, ...]:
return (
"com.sun.star.style.ParagraphProperties",
"com.sun.star.style.ParagraphStyle",
)