Sha256: 7cb007af6304aead397450210bf5d81c56057d3bed46b18782c753707fe083ad
Contents?: true
Size: 1.2 KB
Versions: 5
Compression:
Stored size: 1.2 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
5 entries across 5 versions & 1 rubygems