Displaying 1 result from an estimated 1 matches for "each_pag".
Did you mean:
each_page
2008 Jan 18
0
[ wxruby-Feature Requests-17188 ] Add a each_page method to AuiNotebook class
...#17188, was opened at 17-01-2008 19:32
You can respond by visiting:
http://rubyforge.org/tracker/?func=detail&atid=221&aid=17188&group_id=35
Category: API improvement
Group: None
Status: Open
Priority: 3
Submitted By: Nobody (None)
Assigned to: Kevin Smith (qualitycode)
Summary: Add a each_page method to AuiNotebook class
Initial Comment:
I wrote this little helper method to iterate over the AuiNotebook pages.
class Wx::AuiNotebook
def each_page
for i in 0..(get_page_count-1) do
yield get_page(i)
end
end
end
My suggestion is to add that method to wxruby...