Methods
Constants
| TkCommandNames | = | [].freeze |
Instance Public methods
bbox(index)
Link
def create_self
fail RuntimeError, "TkTextWin is an abstract class"
end private :create_self
Source: show
# File ext/tk/lib/tk/txtwin_abst.rb, line 13 def bbox(index) list(tk_send_without_enc('bbox', index)) end
delete(first, last=None)
Link
Source: show
# File ext/tk/lib/tk/txtwin_abst.rb, line 16 def delete(first, last=None) tk_send_without_enc('delete', first, last) self end
get(*index)
Link
Source: show
# File ext/tk/lib/tk/txtwin_abst.rb, line 20 def get(*index) _fromUTF8(tk_send_without_enc('get', *index)) end
insert(index, *args)
Link
Source: show
# File ext/tk/lib/tk/txtwin_abst.rb, line 23 def insert(index, *args) tk_send('insert', index, *args) self end
scan_dragto(x, y)
Link
Source: show
# File ext/tk/lib/tk/txtwin_abst.rb, line 31 def scan_dragto(x, y) tk_send_without_enc('scan', 'dragto', x, y) self end