Home | History | Annotate | Download | only in tkinter

Lines Matching refs:_variable

1520         self._variable = variable or tkinter.IntVar(master)
1521 self._variable.set(from_)
1525 self.scale = Scale(self, variable=self._variable, from_=from_, to=to)
1536 self.__tracecb = self._variable.trace_variable('w', self._adjust)
1544 self._variable.trace_vdelete('w', self.__tracecb)
1549 del self._variable
1570 newval = self._variable.get()
1583 return self._variable.get()
1588 self._variable.set(val)
1618 self._variable = variable
1641 command=tkinter._setit(self._variable, val, self._callback))
1644 self._variable.set(default)
1649 del self._variable