# 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 HtmlCellEvent(__wx__core.CommandEvent):
    """
    HtmlCellEvent(commandType, id, cell, point, ev) -> 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 GetCell(self): # real signature unknown; restored from __doc__
        """
        GetCell() -> HtmlCell
        
        Returns the wxHtmlCellEvent associated with the event.
        """
        return HtmlCell

    def GetLinkClicked(self): # real signature unknown; restored from __doc__
        """
        GetLinkClicked() -> bool
        
        Returns true if SetLinkClicked(true) has previously been called; false
        otherwise.
        """
        return False

    def GetMouseEvent(self): # real signature unknown; restored from __doc__
        """
        GetMouseEvent() -> wx.MouseEvent
        
        Returns the wxMouseEvent associated with the event.
        """
        pass

    def GetPoint(self): # real signature unknown; restored from __doc__
        """
        GetPoint() -> wx.Point
        
        Returns the wxPoint associated with the event.
        """
        pass

    def SetLinkClicked(self, linkclicked): # real signature unknown; restored from __doc__
        """
        SetLinkClicked(linkclicked) -> None
        
        Call this function with linkclicked set to true if the cell which has
        been clicked contained a link or false otherwise (which is the
        default).
        """
        pass

    def __init__(self, commandType, id, cell, point, ev): # real signature unknown; restored from __doc__
        pass

    Cell = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetCell() -> HtmlCell

Returns the wxHtmlCellEvent associated with the event."""

    LinkClicked = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetLinkClicked() -> bool

Returns true if SetLinkClicked(true) has previously been called; false
otherwise."""

    MouseEvent = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetMouseEvent() -> wx.MouseEvent

Returns the wxMouseEvent associated with the event."""

    Point = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetPoint() -> wx.Point

Returns the wxPoint associated with the event."""



