Lines Matching defs:index

642     def bbox(self, index):
644 bounding box of the character given by index."""
645 return self._getints(self.tk.call(self._w, "bbox", index))
683 returns the index of the current value in the list of values
804 valid for method index)
838 def index(self, tab_id):
839 """Returns the numeric index of the tab specified by tab_id, or
841 return self.tk.getint(self.tk.call(self._w, "index", tab_id))
847 pos is either the string end, an integer index, or the name of
933 pos is either the string end, and integer index, or the name
942 pane is either an integer index or the name of a managed subwindow.
951 def sashpos(self, index, newpos=None):
952 """If newpos is specified, sets the position of sash number index.
958 Returns the new position of sash number index."""
959 return self.tk.getint(self.tk.call(self._w, "sashpos", index, newpos))
1315 def index(self, item):
1316 """Returns the integer index of item within its parent's list
1318 return self.tk.getint(self.tk.call(self._w, "index", item))
1321 def insert(self, parent, index, iid=None, **kw):
1326 to create a new top-level item. index is an integer, or the value
1328 the new item. If index is less than or equal to zero, the new node
1329 is inserted at the beginning, if index is greater than or equal to
1336 res = self.tk.call(self._w, "insert", parent, index,
1339 res = self.tk.call(self._w, "insert", parent, index, *opts)
1356 def move(self, item, parent, index):
1357 """Moves item to position index in parent's list of children.
1360 index is less than or equal to zero, item is moved to the
1363 self.tk.call(self._w, "move", item, parent, index)