Methods
A
D
G
I
R
Constants
TkCommandNames = ['PanelFrame'.freeze].freeze
 
WidgetClassName = 'PanelFrame'.freeze
 
Instance Public methods
add(win, keys={})
# File ext/tk/lib/tkextlib/bwidget/panelframe.rb, line 27
def add(win, keys={})
  tk_send('add', win, keys)
  self
end
delete(*wins)
# File ext/tk/lib/tkextlib/bwidget/panelframe.rb, line 32
def delete(*wins)
  tk_send('delete', *wins)
  self
end
get_frame(&b)
# File ext/tk/lib/tkextlib/bwidget/panelframe.rb, line 37
def get_frame(&b)
  win = window(tk_send_without_enc('getframe'))
  if b
    if TkCore::WITH_RUBY_VM  ### Ruby 1.9 !!!!
      win.instance_exec(self, &b)
    else
      win.instance_eval(&b)
    end
  end
  win
end
items()
# File ext/tk/lib/tkextlib/bwidget/panelframe.rb, line 49
def items
  simplelist(tk_send('items')).map{|w| window(w)}
end
remove(*wins)
# File ext/tk/lib/tkextlib/bwidget/panelframe.rb, line 53
def remove(*wins)
  tk_send('remove', *wins)
  self
end
remove_with_destroy(*wins)
# File ext/tk/lib/tkextlib/bwidget/panelframe.rb, line 58
def remove_with_destroy(*wins)
  tk_send('remove', '-destroy', *wins)
  self
end