Commit | Line | Data |
d0eafc11 |
1 | package Excel::Template::Container::Hidden; |
2 | |
3 | use strict; |
4 | |
5 | BEGIN { |
6 | use vars qw(@ISA); |
7 | @ISA = qw( Excel::Template::Container::Format ); |
8 | |
9 | use Excel::Template::Container::Format; |
10 | } |
11 | |
12 | sub new |
13 | { |
14 | my $class = shift; |
15 | my $self = $class->SUPER::new(@_); |
16 | |
17 | $self->{HIDDEN} = 1; |
18 | |
19 | return $self; |
20 | } |
21 | |
22 | 1; |
23 | __END__ |
24 | |
25 | =head1 NAME |
26 | |
27 | Excel::Template::Container::Hidden - Excel::Template::Container::Hidden |
28 | |
29 | =head1 PURPOSE |
30 | |
31 | To format all children in hidden |
32 | |
33 | =head1 NODE NAME |
34 | |
35 | HIDDEN |
36 | |
37 | =head1 INHERITANCE |
38 | |
39 | Excel::Template::Container::Format |
40 | |
41 | =head1 ATTRIBUTES |
42 | |
43 | None |
44 | |
45 | =head1 CHILDREN |
46 | |
47 | None |
48 | |
49 | =head1 EFFECTS |
50 | |
51 | None |
52 | |
53 | =head1 DEPENDENCIES |
54 | |
dba6a68e |
55 | You must have protected the worksheet containing any cells that are affected by |
56 | this format. Otherwise, this node will have no effect. |
d0eafc11 |
57 | |
58 | =head1 USAGE |
59 | |
60 | <hidden> |
61 | ... Children here |
62 | </hidden> |
63 | |
64 | In the above example, the children will be displayed (if they are displaying |
65 | elements) in a hidden format. All other formatting will remain the same and the |
66 | "hidden"-ness will end at the end tag. |
67 | |
68 | =head1 AUTHOR |
69 | |
c09684ff |
70 | Rob Kinyon (rob.kinyon@gmail.com) |
d0eafc11 |
71 | |
72 | =head1 SEE ALSO |
73 | |
dba6a68e |
74 | WORKSHEET, FORMAT |
d0eafc11 |
75 | |
76 | =cut |