Method: WinWindow#children_recursive
- Defined in:
- lib/winwindow.rb
#children_recursive(options = {}) ⇒ Object
returns an Enumerable object that can iterate over each child of this window recursively, yielding a WinWindow object for each child.
1107 1108 1109 |
# File 'lib/winwindow.rb', line 1107 def children_recursive(={}) Enumerator.new(self, :recurse_each_child, ) end |