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