TkBindCore (Module)

In: tk/lib/tk.rb

Methods

Public Instance methods

[Source]

# File tk/lib/tk.rb, line 1967
  def bind(context, cmd=Proc.new, args=nil)
    Tk.bind(self, context, cmd, args)
  end

[Source]

# File tk/lib/tk.rb, line 1971
  def bind_append(context, cmd=Proc.new, args=nil)
    Tk.bind_append(self, context, cmd, args)
  end

[Source]

# File tk/lib/tk.rb, line 1975
  def bind_remove(context)
    Tk.bind_remove(self, context)
  end

[Source]

# File tk/lib/tk.rb, line 1979
  def bindinfo(context=nil)
    Tk.bindinfo(self, context)
  end

[Validate]