Method: WinGui::Window#children
- Defined in:
- lib/win_gui/window.rb
#children ⇒ Object
Returns array of Windows that are descendants (not only DIRECT children) of a given Window
100 101 102 |
# File 'lib/win_gui/window.rb', line 100 def children enum_child_windows.map { |child_handle| Window.new child_handle } end |