Method: TkTextTag#bind_append
- Defined in:
- lib/tk/texttag.rb
#bind_append(seq, *args, &block) ⇒ Object
205 206 207 208 209 210 211 212 213 214 |
# File 'lib/tk/texttag.rb', line 205 def bind_append(seq, *args, &block) # if args[0].kind_of?(Proc) || args[0].kind_of?(Method) if TkComm._callback_entry?(args[0]) || !block cmd = args.shift else cmd = block end _bind_append([@t.path, 'tag', 'bind', @id], seq, cmd, *args) self end |