Method: Tk::Text#tag_remove

Defined in:
lib/tk/text.rb

#tag_remove(tag, *indices) ⇒ Object



993
994
995
996
997
# File 'lib/tk/text.rb', line 993

def tag_remove(tag, *indices)
  tk_send_without_enc('tag', 'remove', _get_eval_enc_str(tag),
                      *(indices.collect{|idx| _get_eval_enc_str(idx)}))
  self
end