Source code for ooodev.format.inner.direct.write.char.hyperlink.hyperlink

"""
Module for creating hyperlinks

.. seealso::

    :ref:`help_writer_format_direct_char_hyperlink`

.. versionadded:: 0.9.0
"""

# region Import
from __future__ import annotations
from typing import Any, Tuple, overload, Type, TypeVar

from ooodev.exceptions import ex as mEx
from ooodev.utils import props as mProps
from ooodev.format.inner.kind.format_kind import FormatKind
from ooodev.format.inner.common.props.hyperlink_props import HyperlinkProps
from ooodev.format.inner.direct.write.frame.hyperlink.link_to import LinkTo
from ooodev.format.inner.direct.write.frame.hyperlink.link_to import TargetKind

# endregion Import

_THyperlink = TypeVar("_THyperlink", bound="Hyperlink")




    # endregion Properties