Lines Matching defs:insert
2942 def insert(self, *args):
2945 self.tk.call((self._w, 'insert') + args)
3120 def insert(self, index, string):
3122 self.tk.call(self._w, 'insert', index, string)
3261 def insert(self, index, *elements):
3263 self.tk.call((self._w, 'insert', index) + elements)
3378 def insert(self, index, itemType, cnf={}, **kw):
3380 self.tk.call((self._w, 'insert', index, itemType) +
3385 self.insert(index, 'cascade', cnf or kw)
3389 self.insert(index, 'checkbutton', cnf or kw)
3393 self.insert(index, 'command', cnf or kw)
3397 self.insert(index, 'radiobutton', cnf or kw)
3401 self.insert(index, 'separator', cnf or kw)
3734 flag of the widget. The insert, delete, edit undo and
3767 as all the insert and delete commands that are recorded
3805 def insert(self, index, chars, *args):
3808 self.tk.call((self._w, 'insert', index, chars) + args)
3854 See the method insert for some more information about args, and the
4306 def insert(self, index, s):
4311 return self.tk.call(self._w, 'insert', index, s)