Sha256: 05e3fce3871d7cc0a7fbb980a7f650e714777f992221776eb898615d855e5957
Contents?: true
Size: 1.43 KB
Versions: 3
Compression:
Stored size: 1.43 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::CollapsiblePane}. # # ### Events using this class # # The following event-handler methods redirect the events to member method or handler blocks for {Wx::CollapsiblePaneEvent} events. # Event handler methods: # # - {Wx::EvtHandler#evt_collapsiblepane_changed}(id, meth = nil, &block): The user expanded or collapsed the collapsible pane. # # Category: {Wx::Events} # @see Wx::CollapsiblePane # # # @wxrb_require USE_COLLPANE class CollapsiblePaneEvent < CommandEvent # The constructor is not normally used by the user code. # @param generator [Wx::Object] # @param id [Integer] # @param collapsed [Boolean] # @return [Wx::CollapsiblePaneEvent] def initialize(generator, id, collapsed) end # Returns true if the pane has been collapsed. # @return [Boolean] def get_collapsed; end alias_method :collapsed, :get_collapsed # Sets this as a collapsed pane event (if collapsed is true) or as an expanded pane event (if collapsed is false). # @param collapsed [Boolean] # @return [void] def set_collapsed(collapsed) end alias_method :collapsed=, :set_collapsed end # CollapsiblePaneEvent end
Version data entries
3 entries across 3 versions & 1 rubygems