Source code for ooodev.adapter.table.table_rows_comp

from __future__ import annotations
from typing import cast, TYPE_CHECKING

try:
    # python 3.12+
    from typing import override  # noqa # type: ignore
except ImportError:
    from typing_extensions import override  # noqa # type: ignore

from ooodev.adapter.component_base import ComponentBase
from ooodev.adapter.container.enumeration_access_partial import EnumerationAccessPartial
from ooodev.adapter.table.table_rows_partial import TableRowsPartial

if TYPE_CHECKING:
    from com.sun.star.table import TableRows  # service
    from com.sun.star.table import XTableRows


[docs]class TableRowsComp(ComponentBase, TableRowsPartial, EnumerationAccessPartial): """ Class for managing TableRows Component. Provides methods to access rows via index and to insert and remove rows. """ # pylint: disable=unused-argument
[docs] def __init__(self, component: XTableRows) -> None: """ Constructor Args: component (XCell): UNO Component that implements ``com.sun.star.table.TableRows`` service. """ ComponentBase.__init__(self, component) TableRowsPartial.__init__(self, component=self.component, interface=None) EnumerationAccessPartial.__init__(self, component=self.component, interface=None)
# region Overrides @override def _ComponentBase__get_supported_service_names(self) -> tuple[str, ...]: """Returns a tuple of supported service names.""" return ("com.sun.star.table.TableRows",) # endregion Overrides # region Properties @property @override def component(self) -> TableRows: """TableRows Component""" # pylint: disable=no-member return cast("TableRows", self._ComponentBase__get_component()) # type: ignore
# endregion Properties