Sha256: dcca2d48f0013b9443d8157378aa42dfaebb882156b9158892b575dabecd2bcf

Contents?: true

Size: 763 Bytes

Versions: 1

Compression:

Stored size: 763 Bytes

Contents

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


module Wx

  class ControlWithItems

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

    # Returns true if the items in the control are sorted
    # (style Wx::LB_SORT for list boxes or Wx::CB_SORT for combo boxes).
    # This method is mostly meant for internal use only.
    # @return [Boolean] true is sorted, false otherwise
    def is_sorted; end
    alias :sorted? :is_sorted

  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
wxruby3-0.9.2-x64-mingw-ucrt lib/wx/doc/controlwithitems.rb