1Tiler(3)              User Contributed Perl Documentation             Tiler(3)
2
3
4

NAME

6       Tk::Tiler - Scrollable frame with sub-widgets arranged into rows
7

SYNOPSIS

9         use Tk::Tiler;
10
11         my $tl = $parent->Scrolled('Tiler', -columns => n, -rows => n);
12
13         my $a  = $tl->Xxxxx(...);
14         my $b  = $tl->Xxxxx(...);
15         my $c  = $tl->Xxxxx(...);
16
17         $tl->Manage($a,$b,$c);
18

DESCRIPTION

20       Tiler is derived form Tk::Frame. It is a geometry managing widget which
21       accepts widgets to manage. It places the widgets in a grid with as many
22       widgets as possible in a row. All the "slots" in the grid are the same
23       size, which is determined by the largest managed widget.
24
25       The grid may be scrolled vertically.
26
27
28
29perl v5.16.3                      2014-06-10                          Tiler(3)
Impressum