Sha256: ee81f19a8e91be0cc00aabb05fc8bdaeaf3c8ee563c2910d9e873c54d61f284a

Contents?: true

Size: 989 Bytes

Versions: 2

Compression:

Stored size: 989 Bytes

Contents

# :stopdoc:
# Copyright (c) 2023 M.J.N. Corino, The Netherlands
#
# This software is released under the MIT license.
# :startdoc:


class Wx::RadioBox

  # Enables od disables individual buttons.
  # true if the item has been enabled or disabled or false if nothing was done because it already was in the requested state.
  # @see Wx::Window#enable
  # @param item [Integer]  The zero-based position of the button to enable or disable.
  # @param enable [true,false]  true to enable, false to disable.
  # @return [true,false]
  def enable_item(item, enable=true) end

  # Shows or hides individual buttons.
  # true if the item has been shown or hidden or false if nothing was done because it already was in the requested state.
  # @see Wx::Window#show
  # @param item [Integer]  The zero-based position of the button to show or hide.
  # @param show [true,false]  true to show, false to hide.
  # @return [true,false]
  def show_item(item, show=true) end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
wxruby3-0.9.1-x64-mingw-ucrt lib/wx/doc/radio_box.rb
wxruby3-0.9.0-x64-mingw-ucrt lib/wx/doc/radio_box.rb