Lines Matching refs:from_
1055 Setting a value for any of the "from", "from_" or "to" options
1060 if any(['from' in kw, 'from_' in kw, 'to' in kw]):
1140 to, from_, increment, values, wrap, format, command
1485 def __init__(self, master=None, variable=None, from_=0, to=10, **kw):
1500 self._variable.set(from_)
1501 self._last_valid = from_
1504 self.scale = Scale(self, variable=self._variable, from_=from_, to=to)
1549 from_ = _to_number(self.scale['from'])
1551 if to < from_:
1552 from_, to = to, from_
1554 if not from_ <= newval <= to: