Sha256: d32c125b3f18876f259973d4ef569c581fadd74a4eafe72be95935d464584285
Contents?: true
Size: 1.73 KB
Versions: 2
Compression:
Stored size: 1.73 KB
Contents
# :stopdoc: # This file is automatically generated by the WXRuby3 documentation # generator. Do not alter this file. # :startdoc: module Wx # This event class is used for the events generated by {Wx::SpinCtrlDouble}. # === Events using this class # # The following event-handler methods redirect the events to member method or handler blocks for {Wx::SpinDoubleEvent} events. # Event handler methods: # # - {Wx::EvtHandler#evt_spinctrldouble}(id, meth = nil, &block): Generated whenever the numeric value of the spin control is changed, that is, when the up/down spin button is clicked or when the control loses focus and the new value is different from the last one. See {Wx::SpinDoubleEvent}. # # === # # Category: {Wx::Events} # @see Wx::SpinCtrlDouble # # class SpinDoubleEvent < NotifyEvent # @overload initialize(commandType=Wx::EVT_NULL, winid=0, value=0) # The constructor. # Not normally used by the user code. # @param commandType [Wx::CommandLinkButton::EventType] # @param winid [Integer] # @param value [Float] # @return [Wx::SpinDoubleEvent] # @overload initialize(event) # The copy constructor. # @param event [Wx::SpinDoubleEvent] # @return [Wx::SpinDoubleEvent] def initialize(*args) end # Returns the value associated with this spin control event. # @return [Float] def get_value; end alias_method :value, :get_value # Set the value associated with the event. # (Not normally used by user code.) # @param value [Float] # @return [void] def set_value(value) end alias_method :value=, :set_value end # SpinDoubleEvent end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
wxruby3-0.9.1-x64-mingw-ucrt | lib/wx/doc/gen/spin_double_event.rb |
wxruby3-0.9.0-x64-mingw-ucrt | lib/wx/doc/gen/spin_double_event.rb |