Tk::TFrame.3pm

Langue: en

Version: 2007-12-06 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

Tk::TFrame - A Titled Frame widget

SYNOPSIS

     use Tk::TFrame;
     
     $frame1 = $parent->TFrame(
         -label => [ -text => 'Title' ],
         -borderwidth => 2,
         -relief => 'groove',
     );
 
     # or simply
     $frame2 = $parent->TFrame(
        -label => 'Title'
     );
 
     $frame1->pack;
     $frame2->pack;
 
 

DESCRIPTION

Tk::TFrame provides a frame but with a title which overlaps the border by half of it's height.

SEE ALSO

Tk::LabFrame

AUTHOR

Graham Barr <gbarr@pobox.com> Copyright (c) 1997-1998 Graham Barr. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.