Sha256: c7734efba641a9ad94acd93d02fa66b39e82392a93518b89fa0c5687aa409013

Contents?: true

Size: 447 Bytes

Versions: 2

Compression:

Stored size: 447 Bytes

Contents

# Copyright (c) 2023 M.J.N. Corino, The Netherlands
#
# This software is released under the MIT license.
# 
# Some parts are
# Copyright 2004-2007, wxRuby development team
# released under the MIT-like wxRuby2 license

# Displays a set of pages in parallel using tabs

class Wx::Notebook
  # Convenience method for iterating pages
  def each_page
    0.upto(get_page_count - 1) do | i |
      yield get_page(i)
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
wxruby3-0.9.1-x64-mingw-ucrt lib/wx/core/notebook.rb
wxruby3-0.9.0-x64-mingw-ucrt lib/wx/core/notebook.rb