Tk::TFrame - A Titled Frame widget


Tk-GBARR documentation  | view source Contained in the Tk-GBARR distribution.

Index


NAME

Top

Tk::TFrame - A Titled Frame widget

SYNOPSIS

Top

    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

Top

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

SEE ALSO

Top

Tk::LabFrame

AUTHOR

Top

Graham Barr <gbarr@pobox.com>

COPYRIGHT

Top


Tk-GBARR documentation  | view source Contained in the Tk-GBARR distribution.