# encoding: utf-8
# module wx._html
# from D:\project\A_Board\.venv\Lib\site-packages\wx\_html.cp313-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import sip as __sip
import wx._core as __wx__core


class HtmlLinkInfo(__wx__core.Object):
    """
    HtmlLinkInfo() -> None
    HtmlLinkInfo(href, target='') -> None
    
    This class stores all necessary information about hypertext links (as
    represented by <A> tag in HTML documents).
    """
    def GetEvent(self): # real signature unknown; restored from __doc__
        """
        GetEvent() -> wx.MouseEvent
        
        Return pointer to event that generated OnLinkClicked() event.
        """
        pass

    def GetHref(self): # real signature unknown; restored from __doc__
        """
        GetHref() -> str
        
        Return HREF value of the <A> tag.
        """
        return ""

    def GetHtmlCell(self): # real signature unknown; restored from __doc__
        """
        GetHtmlCell() -> HtmlCell
        
        Return pointer to the cell that was clicked.
        """
        return HtmlCell

    def GetTarget(self): # real signature unknown; restored from __doc__
        """
        GetTarget() -> str
        
        Return TARGET value of the <A> tag (this value is used to specify in
        which frame should be the page pointed by GetHref() Href opened).
        """
        return ""

    def __init__(self, href=None, target=''): # real signature unknown; restored from __doc__ with multiple overloads
        pass

    Event = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetEvent() -> wx.MouseEvent

Return pointer to event that generated OnLinkClicked() event."""

    Href = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetHref() -> str

Return HREF value of the <A> tag."""

    HtmlCell = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetHtmlCell() -> HtmlCell

Return pointer to the cell that was clicked."""

    Target = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetTarget() -> str

Return TARGET value of the <A> tag (this value is used to specify in
which frame should be the page pointed by GetHref() Href opened)."""



