Method: TkPack.forget
- Defined in:
- lib/tk/pack.rb
.forget(*args) ⇒ Object
52 53 54 55 56 57 58 59 |
# File 'lib/tk/pack.rb', line 52 def forget(*args) return '' if args.size == 0 wins = args.collect{|win| # (win.kind_of?(TkObject))? win.epath: win _epath(win) } tk_call_without_enc('pack', 'forget', *wins) end |