Sha256: e460da1989278c051dc342e6748a801cb5e26149b15f7b177ef7517a92e9aad6
Contents?: true
Size: 1.16 KB
Versions: 1
Compression:
Stored size: 1.16 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::Slider::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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wxruby3-0.9.2-x64-mingw-ucrt | lib/wx/doc/gen/date_event.rb |