Tk::Panel - A collapsable frame with title.


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

Index


NAME

Top

Tk::Panel - A collapsable frame with title.

SYNOPSIS

Top

  use Tk;
  use Tk::Panel;

  $m = $parent->Panel(
		-relief	=> <relief of inner boundary>,
		-border	=> <border size of inner boundary>
		-text	=> <text of title>
		-toggle	=> <0|1>
		-state	=> <normal|active|disabled>
		-show	=> 1|0
  	);

   $m->Widget()->pack();

DESCRIPTION

Top

	This is a frame type object with a boundary and a title.
	The title can include a checkbox allowing the contents of
	the panel to be collapsed.

	Further widgets can be created inside the Panel.

OPTIONS

Top

-relief => <relief of inner boundary>

        Sets the relief of inner boundary. The default is 'raised'.

-border => <border size of inner boundary>

        Sets the relief of inner boundary.

-text => "title text"

        Sets the title of the Panel.

-toggle => 1|0

        This sets if the Panel can be collapsed via the title.

-state => <normal|active|disabled>

	This sets the state of the check button version of the title.

-show => 1|0

	This sets if the Panel is expanded or collapsed.


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