Return the number of elements in the listbox.
(self)
| 3460 | select_set = selection_set |
| 3461 | |
| 3462 | def size(self): |
| 3463 | """Return the number of elements in the listbox.""" |
| 3464 | return self.tk.getint(self.tk.call(self._w, 'size')) |
| 3465 | |
| 3466 | def itemcget(self, index, option): |
| 3467 | """Return the resource value for an ITEM and an OPTION.""" |