| Excel-Template documentation | Contained in the Excel-Template distribution. |
Excel::Template::Container::Outline - Excel::Template::Container::Outline
To format all children in outline
OUTLINE
Excel::Template::Container::Format
None
None
None
None
<outline>
... Children here
</outline>
In the above example, the children will be displayed (if they are displaying elements) in a outline format. All other formatting will remain the same and the "outline"-ness will end at the end tag.
Rob Kinyon (rob.kinyon@gmail.com)
FORMAT
| Excel-Template documentation | Contained in the Excel-Template distribution. |
package Excel::Template::Container::Outline; use strict; BEGIN { use vars qw(@ISA); @ISA = qw( Excel::Template::Container::Format ); use Excel::Template::Container::Format; } sub new { my $class = shift; my $self = $class->SUPER::new(@_); $self->{FONT_OUTLINE} = 1; return $self; } 1; __END__