# encoding: utf-8
# module wx._adv
# from D:\project\A_Board\.venv\Lib\site-packages\wx\_adv.cp313-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import sip as __sip
import wx._core as __wx__core


class HyperlinkEvent(__wx__core.CommandEvent):
    """
    HyperlinkEvent(generator, id, url) -> None
    
    This event class is used for the events generated by wxHyperlinkCtrl.
    """
    def Clone(self): # real signature unknown; restored from __doc__
        """ Clone(self) -> Optional[Event] """
        pass

    def GetURL(self): # real signature unknown; restored from __doc__
        """
        GetURL() -> str
        
        Returns the URL of the hyperlink where the user has just clicked.
        """
        return ""

    def SetURL(self, url): # real signature unknown; restored from __doc__
        """
        SetURL(url) -> None
        
        Sets the URL associated with the event.
        """
        pass

    def __init__(self, generator, id, url): # real signature unknown; restored from __doc__
        pass

    URL = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetURL() -> str

Returns the URL of the hyperlink where the user has just clicked."""



