Return whether between index INDEX1 and index INDEX2 the relation OP is satisfied. OP is one of <, <=, ==, >=, >, or !=.
(self, index1, op, index2)
| 3652 | self.tk.call(self._w, 'bbox', index)) or None |
| 3653 | |
| 3654 | def compare(self, index1, op, index2): |
| 3655 | """Return whether between index INDEX1 and index INDEX2 the |
| 3656 | relation OP is satisfied. OP is one of <, <=, ==, >=, >, or !=.""" |
| 3657 | return self.tk.getboolean(self.tk.call( |
| 3658 | self._w, 'compare', index1, op, index2)) |
| 3659 | |
| 3660 | def count(self, index1, index2, *args): # new in Tk 8.5 |
| 3661 | """Counts the number of relevant things between the two indices. |
nothing calls this directly
no test coverage detected