Lines Matching defs:delete
1904 args = ('event', 'delete', virtual) + sequences
2877 def delete(self, *args):
2879 self.tk.call((self._w, 'delete') + args)
2966 # unfortunately can't delete the old ones yet (maybe in 1.6)
3103 def delete(self, first, last=None):
3105 self.tk.call(self._w, 'delete', first, last)
3243 def delete(self, first, last=None):
3245 self.tk.call(self._w, 'delete', first, last)
3403 def delete(self, index1, index2=None):
3417 self.tk.call(self._w, 'delete', index1, index2)
3665 def delete(self, index1, index2=None):
3667 self.tk.call(self._w, 'delete', index1, index2)
3734 flag of the widget. The insert, delete, edit undo and
3767 as all the insert and delete commands that are recorded
3855 method delete for information about the indices."""
3930 self.tk.call((self._w, 'tag', 'delete') + tagNames)
4082 self.tk.call('image', 'delete', self.name)
4271 def delete(self, first, last=None):
4274 First is the index of the first character to delete,
4276 the last one to delete. If last isn't specified it
4280 return self.tk.call(self._w, 'delete', first, last)