Sha256: 3105a630c6d6410db32b39e600abaf77bf7e9cde72ac19106ab326b4cbffc5c0

Contents?: true

Size: 1.16 KB

Versions: 14

Compression:

Stored size: 1.16 KB

Contents

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


module Wx::PG

  PG_LABEL = Wx::PG::PG_LABEL_STRING

  PG_DEFAULT_IMAGE_SIZE = Wx::DEFAULT_SIZE

  class PGProperty

    # Iterate each attribute.
    # Passes the variant for each attribute to the given block.
    # Returns an Enumerator if no block given.
    # @yieldparam [Wx::Variant] variant attribute's variant
    # @return [Object,Enumerator] last result of block or Enumerator if no block given.
    def each_attribute; end

  end

  class PGChoices

    # Iterate each label.
    # Passes each label string to the given block.
    # Returns an Enumerator if no block given.
    # @yieldparam [String] label label string
    # @return [Object,Enumerator] last result of block or Enumerator if no block given.
    def each_label; end

    # Iterate each choice entry.
    # Passes each choice entry to the given block.
    # Returns an Enumerator if no block given.
    # @yieldparam [Wx::PG::ChoiceEntry] entry choice entry
    # @return [Object,Enumerator] last result of block or Enumerator if no block given.
    def each_entry; end

  end

end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
wxruby3-1.3.1 lib/wx/doc/pg/pg_property.rb
wxruby3-1.3.0 lib/wx/doc/pg/pg_property.rb
wxruby3-1.2.1 lib/wx/doc/pg/pg_property.rb
wxruby3-1.2.0 lib/wx/doc/pg/pg_property.rb
wxruby3-1.1.2 lib/wx/doc/pg/pg_property.rb
wxruby3-1.1.1 lib/wx/doc/pg/pg_property.rb
wxruby3-1.1.0 lib/wx/doc/pg/pg_property.rb
wxruby3-1.0.1 lib/wx/doc/pg/pg_property.rb
wxruby3-0.9.8 lib/wx/doc/pg/pg_property.rb
wxruby3-0.9.7 lib/wx/doc/pg/pg_property.rb
wxruby3-0.9.5 lib/wx/doc/pg/pg_property.rb
wxruby3-0.9.4 lib/wx/doc/pg/pg_property.rb
wxruby3-0.9.3 lib/wx/doc/pg/pg_property.rb
wxruby3-0.9.2 lib/wx/doc/pg/pg_property.rb