Method: TkWindow#pack
- Defined in:
- lib/tk.rb
#pack(keys = nil) ⇒ Object
5143 5144 5145 5146 5147 5148 5149 5150 5151 |
# File 'lib/tk.rb', line 5143 def pack(keys = nil) #tk_call_without_enc('pack', epath, *hash_kv(keys, true)) if keys TkPack.configure(self, keys) else TkPack.configure(self) end self end |