Sha256: a46a6caa7efd1bd5c76a210c19a9454954910ab930a5ed30c73f5afc2de10d84
Contents?: true
Size: 1.17 KB
Versions: 2
Compression:
Stored size: 1.17 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} # # @wxrb_require USE_DATETIME class DateEvent < CommandEvent # @overload initialize() # @return [Wx::DateEvent] # @overload initialize(win, dt, type) # @param win [Wx::Window] # @param dt [Time,Date,DateTime] # @param type [Wx::Notebook::EventType] # @return [Wx::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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
wxruby3-0.9.5-x64-mingw-ucrt | lib/wx/doc/gen/date_event.rb |
wxruby3-0.9.4-x64-mingw-ucrt | lib/wx/doc/gen/date_event.rb |