# 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 DateEvent(__wx__core.CommandEvent):
    """
    DateEvent() -> None
    DateEvent(win, dt, type) -> None
    
    This event class holds information about a date change and is used
    together with wxDatePickerCtrl.
    """
    def Clone(self): # real signature unknown; restored from __doc__
        """ Clone(self) -> Optional[Event] """
        pass

    def GetDate(self): # real signature unknown; restored from __doc__
        """
        GetDate() -> wx.DateTime
        
        Returns the date.
        """
        pass

    def SetDate(self, date): # real signature unknown; restored from __doc__
        """
        SetDate(date) -> None
        
        Sets the date carried by the event, normally only used by the library
        internally.
        """
        pass

    def __init__(self, win=None, dt=None, type=None): # real signature unknown; restored from __doc__ with multiple overloads
        pass

    Date = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetDate() -> wx.DateTime

Returns the date."""



