Source code for ooodev.adapter.text.text_content_partial

from __future__ import annotations
from typing import Any, TYPE_CHECKING

from com.sun.star.text import XTextContent

from ooodev.exceptions import ex as mEx
from ooodev.loader import lo as mLo

if TYPE_CHECKING:
    from com.sun.star.text import XTextRange
    from ooodev.utils.type_var import UnoInterface


[docs]class TextContentPartial: """ Partial class for XTextContent. """ # pylint: disable=unused-argument
[docs] def __init__(self, component: XTextContent, interface: UnoInterface | None = XTextContent) -> None: """ Constructor Args: component (XTextContent): UNO Component that implements ``com.sun.star.text.XTextContent`` interface. interface (UnoInterface, optional): The interface to be validated. Defaults to ``XTextContent``. """ def validate(comp: Any, obj_type: Any) -> None: if obj_type is None: return if not mLo.Lo.is_uno_interfaces(comp, obj_type): raise mEx.MissingInterfaceError(obj_type) validate(component, interface) self.__component = component
# region XTextContent
[docs] def attach(self, text_range: XTextRange) -> None: """Attaches a text range to this text content.""" self.__component.attach(text_range)
[docs] def get_anchor(self) -> XTextRange: """Returns the anchor of this text content.""" return self.__component.getAnchor()
# endregion XTextContent