Sha256: 96ed1dc6b29ff66b9694daa710bcb1a6738a038b7d5028c3ed7b1942bc08ff3f
Contents?: true
Size: 1.12 KB
Versions: 10
Compression:
Stored size: 1.12 KB
Contents
# :stopdoc: # This file is automatically generated by the WXRuby3 documentation # generator. Do not alter this file. # :startdoc: module Wx # # EVT_DATE_CHANGED = 10076 # # EVT_TIME_CHANGED = 10077 # This event class holds information about a date change and is used together with {Wx::DatePickerCtrl}. # It also serves as a base class for {Wx::CalendarEvent}. # === # # Category: {Wx::Events} # class DateEvent < CommandEvent # @overload initialize() # @return [DateEvent] # @overload initialize(win, dt, type) # @param win [Wx::Window] # @param dt [Time,Date,DateTime] # @param type [Integer] # @return [DateEvent] def initialize(*args) end # Returns the date. # @return [Wx::DateTime] def get_date; end alias_method :date, :get_date # Sets the date carried by the event, normally only used by the library internally. # @param date [Time,Date,DateTime] # @return [void] def set_date(date) end alias_method :date=, :set_date end # DateEvent end
Version data entries
10 entries across 10 versions & 1 rubygems