summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/site/lib/auto/Tk/Listbox/FETCHSIZE.al
blob: 73a34069b3b207023e460a13665ce164f5b10747 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# NOTE: Derived from ..\blib\lib\Tk\Listbox.pm.
# Changes made here will be lost when autosplit is run again.
# See AutoSplit.pm.
package Tk::Listbox;

#line 224 "..\blib\lib\Tk\Listbox.pm (autosplit into ..\blib\lib\auto\Tk\Listbox\FETCHSIZE.al)"
# FETCHSIZE
# ---------
# Return the number of elements in the Listbox when tied to an array
sub FETCHSIZE {
  my $class = shift;
  return ${$class->{OBJECT}}->size();
}

# end of Tk::Listbox::FETCHSIZE
1;