Return the number of elements in the listbox.
(self)
| 3541 | select_set = selection_set |
| 3542 | |
| 3543 | def size(self): |
| 3544 | """Return the number of elements in the listbox.""" |
| 3545 | return self.tk.getint(self.tk.call(self._w, 'size')) |
| 3546 | |
| 3547 | def itemcget(self, index, option): |
| 3548 | """Return the value of OPTION for item at INDEX.""" |