Method: TkGrid.bbox
- Defined in:
- lib/tk/grid.rb
.bbox(master, *args) ⇒ Object
19 20 21 22 23 24 |
# File 'lib/tk/grid.rb', line 19 def bbox(master, *args) # master = master.epath if master.kind_of?(TkObject) master = _epath(master) args.unshift(master) list(tk_call_without_enc('grid', 'bbox', *args)) end |