Lines Matching refs:index
603 def insert(self, index, str):
604 self.tk.call(self._w, 'insert', index, str)
606 def pick(self, index):
607 self.tk.call(self._w, 'pick', index)
902 def dragsite_set(self, index):
903 self.tk.call(self._w, 'dragsite', 'set', index)
908 def dropsite_set(self, index):
909 self.tk.call(self._w, 'dropsite', 'set', index)
1434 def active_set(self, index):
1435 self.tk.call(self._w, 'active', 'set', index)
1440 def anchor_set(self, index):
1441 self.tk.call(self._w, 'anchor', 'set', index)
1449 def dragsite_set(self, index):
1450 self.tk.call(self._w, 'dragsite', 'set', index)
1455 def dropsite_set(self, index):
1456 self.tk.call(self._w, 'dropsite', 'set', index)
1461 def insert(self, index, cnf={}, **kw):
1462 self.tk.call(self._w, 'insert', index, *self._options(cnf, kw))
1470 def info_down(self, index):
1471 return self.tk.call(self._w, 'info', 'down', index)
1473 def info_left(self, index):
1474 return self.tk.call(self._w, 'info', 'left', index)
1476 def info_right(self, index):
1477 return self.tk.call(self._w, 'info', 'right', index)
1486 def info_up(self, index):
1487 return self.tk.call(self._w, 'info', 'up', index)
1492 def see(self, index):
1493 self.tk.call(self._w, 'see', index)
1498 def selection_includes(self, index):
1499 return self.tk.call(self._w, 'selection', 'includes', index)
1797 # edit, entryconfigure, format, geometryinfo, info, index, move, nearest,
1847 # def index
1885 def size_column(self, index, **kw):
1908 return self.tk.splitlist(self.tk.call(self._w, 'size', 'column', index,
1911 def size_row(self, index, **kw):
1934 self, 'size', 'row', index, *self._options({}, kw)))