Method: Fox::FXWindow#children
- Defined in:
- lib/fox16/core.rb
#children ⇒ Object
Returns an array containing all child windows of this window
325 326 327 328 329 |
# File 'lib/fox16/core.rb', line 325 def children kids = [] each_child { |kid| kids << kid } kids end |