Methods
- E
- G
- S
Included Modules
- Scrollable
Constants
TkCommandNames | = | ['SpinBox'.freeze].freeze |
WidgetClassName | = | 'SpinBox'.freeze |
Instance Public methods
entrybind(context, *args)
Link
def entrybind(*args)
_bind([path, 'bind'], *args)
self
end
# File ext/tk/lib/tkextlib/bwidget/spinbox.rb, line 49 def entrybind(context, *args) #if args[0].kind_of?(Proc) || args[0].kind_of?(Method) if TkComm._callback_entry?(args[0]) || !block_given? cmd = args.shift else cmd = Proc.new end _bind([path, 'bind'], context, cmd, *args) self end
entrybind_append(context, *args)
Link
# File ext/tk/lib/tkextlib/bwidget/spinbox.rb, line 64 def entrybind_append(context, *args) #if args[0].kind_of?(Proc) || args[0].kind_of?(Method) if TkComm._callback_entry?(args[0]) || !block_given? cmd = args.shift else cmd = Proc.new end _bind_append([path, 'bind'], context, cmd, *args) self end
entrybind_remove(*args)
Link
entrybindinfo(*args)
Link