class Tk::Tile::Frame

Public Class Methods

new(parent = Tk.root, options = {}) click to toggle source
Calls superclass method Tk::Widget::new
# File lib/ffi-tk/widget/tile/frame.rb, line 10
def initialize(parent = Tk.root, options = {})
  options = { relief: :flat }.merge(options)
  super
end
tk_command() click to toggle source
# File lib/ffi-tk/widget/tile/frame.rb, line 5
def self.tk_command
  'ttk::frame'
end