# 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 HtmlLinkEvent(__wx__core.CommandEvent):
    """
    HtmlLinkEvent(id, linkinfo) -> None
    
    This event class is used for the events generated by wxHtmlWindow.
    """
    def Clone(self): # real signature unknown; restored from __doc__
        """ Clone(self) -> Optional[Event] """
        pass

    def GetLinkInfo(self): # real signature unknown; restored from __doc__
        """
        GetLinkInfo() -> HtmlLinkInfo
        
        Returns the wxHtmlLinkInfo which contains info about the cell clicked
        and the hyperlink it contains.
        """
        return HtmlLinkInfo

    def __init__(self, id, linkinfo): # real signature unknown; restored from __doc__
        pass

    LinkInfo = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetLinkInfo() -> HtmlLinkInfo

Returns the wxHtmlLinkInfo which contains info about the cell clicked
and the hyperlink it contains."""



