Home | History | Annotate | Download | only in lib-tk

Lines Matching full:sash

3590         If the point is over a sash or a sash handle, the result
3591 is a two element list containing the index of the sash or
3592 handle, and a word indicating whether it is over a sash
3593 or a handle, such as {0 sash} or {2 handle}. If the point
3619 def sash(self, *args):
3622 self.tk.call((self._w, 'sash') + args)) or ()
3625 """Return the current x and y pair for the sash given by index.
3629 those of the top left corner of the region containing the sash.
3630 pathName sash dragto index x y This command computes the
3632 given to the last sash coord command for the given sash. It then
3633 moves that sash the computed difference. The return value is the
3636 return self.sash("coord", index)
3639 """Records x and y for the sash given by index;
3641 Used in conjunction with later dragto commands to move the sash.
3643 return self.sash("mark", index)
3646 """Place the sash given by index at the given coordinates
3648 return self.sash("place", index, x, y)