class Qt::TreeWidget

Public Instance Methods

each() { |current| ... } click to toggle source
# File lib/Qt/qtruby4.rb, line 2174
def each
  it = Qt::TreeWidgetItemIterator.new(self)
  while it.current
    yield it.current
    it += 1
  end
end