NAME

Tk::TFrame - A Titled Frame widget

SYNOPSIS

    use Tk::TFrame;
    
    $frame = $parent->TFrame(
	-label => [ -text => 'Title' ]
	-borderwidth => 2,
	-relief => 'groove'
    );

    $frame->pack;

DESCRIPTION

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

AUTHOR

Graham Barr <bodg@ti.com>

COPYRIGHT

Copyright (c) 1997 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.